summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/classes/cformtable.inc.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-13 15:51:21 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-01-13 15:51:21 +0000
commite9057de8be3f2273d6251b7d0a6095cf978f27f1 (patch)
treed629cc30cf6b96e12032846be3b08add7b0a8237 /frontends/php/include/classes/cformtable.inc.php
parent2934d33bae581c7c54502ce02364f10c3b7d7a45 (diff)
downloadzabbix-e9057de8be3f2273d6251b7d0a6095cf978f27f1.tar.gz
zabbix-e9057de8be3f2273d6251b7d0a6095cf978f27f1.tar.xz
zabbix-e9057de8be3f2273d6251b7d0a6095cf978f27f1.zip
- Frontend improvements. (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@2523 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/classes/cformtable.inc.php')
-rw-r--r--frontends/php/include/classes/cformtable.inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/include/classes/cformtable.inc.php b/frontends/php/include/classes/cformtable.inc.php
index 61139b2b..6fb0c32c 100644
--- a/frontends/php/include/classes/cformtable.inc.php
+++ b/frontends/php/include/classes/cformtable.inc.php
@@ -30,9 +30,9 @@
var $center_items = array();
var $bottom_items = array();
/* public */
- function CFormTable($title=NULL, $action=NULL, $method='get')
+ function CFormTable($title=NULL, $action=NULL, $method='get', $enctype=NULL)
{
- parent::CForm($action,$method);
+ parent::CForm($action,$method,$enctype);
$this->SetTitle($title);
$this->SetAlign('center');
$this->SetHelp();
@@ -96,7 +96,7 @@
);
array_push($this->center_items, $row);
}
- function AddSpanRow($value, $class="form_row_last")
+ function AddSpanRow($value, $class=NULL)
{
$col = new CCol($value,$class);
$col->SetColSpan(2);