* Fix bug#37439.
This commit is contained in:
@@ -62,9 +62,9 @@
|
||||
<div class='cols-list template' id="originCols">
|
||||
<?php foreach ($cols as $key => $col):?>
|
||||
<?php
|
||||
$required = zget($col, 'required', 'no') == 'yes';
|
||||
$fixed = zget($col, 'fixed', 'no');
|
||||
$width = zget($col, 'width', 'auto');
|
||||
$required = $col['required'] == 'yes';
|
||||
$fixed = $col['fixed'];
|
||||
$width = $col['width'];
|
||||
$autoWidth = $width == 'auto';
|
||||
?>
|
||||
<div class='clearfix col<?php echo ($required ? ' require' : '') . (' fixed-' . $fixed) ?>' data-key='<?php echo $key?>' data-fixed='<?php echo $fixed?>' data-width='<?php echo $width;?>'>
|
||||
|
||||
Reference in New Issue
Block a user