summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/usr/local/www/classes/Form/Section.class.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/classes/Form/Section.class.php b/src/usr/local/www/classes/Form/Section.class.php
index e012d14..baf4d8d 100644
--- a/src/usr/local/www/classes/Form/Section.class.php
+++ b/src/usr/local/www/classes/Form/Section.class.php
@@ -37,15 +37,15 @@ class Form_Section extends Form_Element
);
protected $_title;
protected $_groups = array();
- protected $_collapsable;
+ protected $_collapsible;
- public function __construct($title, $id = "", $collapsable = false, $startcollapsed = false)
+ public function __construct($title, $id = "", $collapsible = false, $startcollapsed = false)
{
if (!empty($id)) {
$this->_attributes['id'] = $id;
}
$this->_title = $title;
- $this->_collapsable = $collapsable;
+ $this->_collapsible = $collapsible;
$this->_startcollapsed = $startcollapsed;
}
@@ -76,7 +76,7 @@ class Form_Section extends Form_Element
$hdricon = "";
$bodyclass = '<div class="panel-body">';
- if ($this->_collapsable) {
+ if ($this->_collapsible) {
$hdricon = '<span class="widget-heading-icon">' .
'<a data-toggle="collapse" href="#' . $this->_attributes['id'] . ' .panel-body">' .
'<i class="fa fa-plus-circle"></i>' .
OpenPOWER on IntegriCloud