diff --git a/e107_handlers/form_handler.php b/e107_handlers/form_handler.php index 6fe52a463..772c2fab2 100644 --- a/e107_handlers/form_handler.php +++ b/e107_handlers/form_handler.php @@ -9,8 +9,8 @@ * Form Handler * * $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $ - * $Revision: 1.36 $ - * $Date: 2009-07-17 07:53:13 $ + * $Revision: 1.37 $ + * $Date: 2009-07-21 16:05:10 $ * $Author: e107coders $ * */ @@ -671,6 +671,7 @@ class e_form $text .= $val['title']; $text .= ($val['url']) ? "" : ""; $text .= ($key == "options") ? $this->columnSelector($fieldarray,$columnPref) : ""; + $text .= ($key == "checkboxes") ? $this->checkbox_toggle('e-column-toggle',$val['toggle']) : ""; $text .= ""; diff --git a/e107_plugins/download/handlers/adminDownload_class.php b/e107_plugins/download/handlers/adminDownload_class.php index ae09b95c4..aa2e7c998 100644 --- a/e107_plugins/download/handlers/adminDownload_class.php +++ b/e107_plugins/download/handlers/adminDownload_class.php @@ -11,8 +11,8 @@ | GNU General Public License (http://gnu.org). | | $Source: /cvs_backup/e107_0.8/e107_plugins/download/handlers/adminDownload_class.php,v $ -| $Revision: 1.10 $ -| $Date: 2009-07-19 20:25:03 $ +| $Revision: 1.11 $ +| $Date: 2009-07-21 16:05:11 $ | $Author: e107coders $ | +----------------------------------------------------------------------------+ @@ -222,7 +222,7 @@ class adminDownload extends download $sort_link = $sortdirection == 'asc' ? 'desc' : 'asc'; $columnInfo = array( - "checkboxes" => array("title" => "", "forced"=> TRUE, "width" => "3%", "thclass" => "center first", "url" => ""), + "checkboxes" => array("title" => "", "forced"=> TRUE, "width" => "3%", "thclass" => "center first", "toggle" => "dl_selected"), "download_id" => array("title"=>DOWLAN_67, "type"=>"", "width"=>"auto", "thclass"=>"", "forced"=>true), "download_name" => array("title"=>DOWLAN_12, "type"=>"", "width"=>"auto", "thclass"=>""), "download_url" => array("title"=>DOWLAN_13, "type"=>"", "width"=>"auto", "thclass"=>""),