Changeset 15905 for trunk/templates
- Timestamp:
- 01/22/12 23:18:49 (4 months ago)
- File:
-
- 1 edited
-
trunk/templates/base/scripts/BxBaseFormView.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/base/scripts/BxBaseFormView.php
r15879 r15905 144 144 'name' => 'csrf_token', 145 145 'value' => $mixedCsrfToken, 146 'db' => array ( 147 'pass' => 'Xss', 148 ) 146 'db' => array ('pass' => 'Xss'), 147 'visible_for_levels' => PHP_INT_MAX, 149 148 ); 150 149 } … … 163 162 $sCont = ''; 164 163 foreach ($this->aInputs as $aInput) 165 $sCont .= $this->genRow($aInput); 164 if ($this->_isVisible($aInput)) 165 $sCont .= $this->genRow($aInput); 166 166 167 167 $sCloseSection = $this->getCloseSection();
Note: See TracChangeset
for help on using the changeset viewer.