mirror of
https://github.com/avecms/AVE.cms.git
synced 2025-01-22 07:20:07 +00:00
Fixes
This commit is contained in:
parent
0bb26b14fb
commit
1bbc09b6fd
@ -62,7 +62,7 @@
|
||||
<td></td>
|
||||
<td>
|
||||
{foreach from=$modules item=module}
|
||||
{if $module.status == 1 && $module.ModuleIsFunction == 1}
|
||||
{if $module.ModuleStatus == 1 && $module.ModuleIsFunction == 1}
|
||||
<input type="checkbox" name="perms[]" class="float" value="mod_{$module.ModuleSysName}"{if in_array($module.ModuleFunction, $g_group_permissions) || in_array('alles', $g_group_permissions)} checked="checked"{/if}{if $smarty.request.Id == 1 || $smarty.request.Id == $PAGE_NOT_FOUND_ID || in_array('alles', $g_group_permissions)} disabled="disabled"{/if}><label>{$module.ModuleName}</label>
|
||||
<div class="clear"></div>
|
||||
{/if}
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
class AVE_Module
|
||||
{
|
||||
public $_modules = array();
|
||||
public $_modules = [];
|
||||
|
||||
|
||||
function __construct()
|
||||
@ -26,7 +26,7 @@
|
||||
*/
|
||||
function getModules()
|
||||
{
|
||||
$modules = array();
|
||||
$modules = [];
|
||||
|
||||
// Получаем из БД информацию о всех установленных модулях
|
||||
$modules_db = $this->moduleListGet();
|
||||
|
@ -31,7 +31,7 @@ class AVE_User
|
||||
*
|
||||
* @public array
|
||||
*/
|
||||
public $_allowed_admin_permission = array(
|
||||
public $_allowed_admin_permission = [
|
||||
'alles', // все права
|
||||
'adminpanel', // доступ в админку
|
||||
'group_view', 'group_edit', // группы пользователей
|
||||
@ -51,7 +51,7 @@ class AVE_User
|
||||
'db_actions', // база данных
|
||||
'logs_view', 'logs_clear', // логи
|
||||
'cache_clear', 'cache_thumb' // сессии и кеш
|
||||
);
|
||||
];
|
||||
|
||||
/**
|
||||
* Разделитель используемый при записи даты рождения
|
||||
@ -157,7 +157,8 @@ class AVE_User
|
||||
|
||||
// Проверка даты рождения
|
||||
$match = '';
|
||||
if (!empty($_POST['birthday']) && !preg_match($regex_birthday, $_POST['birthday'], $match))
|
||||
|
||||
if (! empty($_POST['birthday']) && ! preg_match($regex_birthday, $_POST['birthday'], $match))
|
||||
{
|
||||
$errors[] = @$AVE_Template->get_config_vars('USER_ERROR_DATEFORMAT');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user