// fixed bug property currentIndex

This commit is contained in:
lLefevre
2011-10-17 08:32:31 +00:00
parent 2184ec1197
commit ea5db2d23c
2 changed files with 6 additions and 5 deletions

View File

@@ -83,9 +83,10 @@ class HelperFormCore extends Helper
public function getFieldsRequired()
{
foreach ($this->fields_form['input'] as $input)
if (array_key_exists('required', $input) && $input['required'])
return true;
if (isset($this->fields_form['input']))
foreach ($this->fields_form['input'] as $input)
if (array_key_exists('required', $input) && $input['required'])
return true;
return false;
}

View File

@@ -145,8 +145,8 @@ class AdminRequestSqlControllerCore extends AdminController
');
$smarty = $this->context->smarty;
if ($this->display != 'edit' && $this->display != 'add')
if ($this->display != 'edit' && $this->display != 'add' && $this->display != 'view')
$this->display = 'list';
switch ($this->display)