Skip to content

Commit

Permalink
Fixed a wrong configulation rule
Browse files Browse the repository at this point in the history
  • Loading branch information
mystralkk committed Nov 11, 2016
1 parent 17785bb commit 10f5ba3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions public_html/admin/configuration_validation.php
Expand Up @@ -685,12 +685,14 @@
$_CONF_VALIDATE['Core']['filemanager_show_confirmation'] = array('rule' => 'boolean');
$_CONF_VALIDATE['Core']['filemanager_search_box'] = array('rule' => 'boolean');
$_CONF_VALIDATE['Core']['filemanager_file_sorting'] = array(
'inList',
array(
'default', 'NAME_ASC', 'NAME_DESC', 'TYPE_ASC', 'TYPE_DESC',
'MODIFIED_ASC', 'MODIFIED_DESC'
),
true
'rule' => array(
'inList',
array(
'default', 'NAME_ASC', 'NAME_DESC', 'TYPE_ASC', 'TYPE_DESC',
'MODIFIED_ASC', 'MODIFIED_DESC'
),
true
)
);
$_CONF_VALIDATE['Core']['filemanager_chars_only_latin'] = array('rule' => 'boolean');
$_CONF_VALIDATE['Core']['filemanager_date_format'] = array('rule' => 'notEmpty');
Expand Down

0 comments on commit 10f5ba3

Please sign in to comment.