Ban List Mod
Scris: 07-Ian-2012, 22:01:04
Am si eu o problema cu Ban List Mod ...
Eu ( administrator ) pot vedea userii banati , si ca vizitator sau membru inregistrat nu pot avea acces ...
Logat pe Administrator

Logat pe contul de test / vizitator

constants_ban_list.php
Ce trebuia sa modific aici ?
Forum : http://forum.forcecs.ro
Cont : 123 pas 123456789
Eu ( administrator ) pot vedea userii banati , si ca vizitator sau membru inregistrat nu pot avea acces ...
Logat pe Administrator

Logat pe contul de test / vizitator

constants_ban_list.php
Cod: Selectaţi tot
<?php
/**
*
* @package phpBB3
* @version 1.0.9
* @copyright (c) 2009 RMcGirr83
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
// define constants..used in multiple files
// so do a if !defined first
// everyone can view..well at least registered users
if (!defined('ALLOW_BAN_LIST_ALL_USERS'))
{
define('ALLOW_BAN_LIST_ALL_USERS', 0);
}
// only mods and admins can view
if (!defined('ALLOW_BAN_LIST_MODS_ADMINS'))
{
define('ALLOW_BAN_LIST_MODS_ADMINS', 1);
}
// only admins
if (!defined('ALLOW_BAN_LIST_ADMINS'))
{
define('ALLOW_BAN_LIST_ADMINS', 2);
}
?>
Forum : http://forum.forcecs.ro
Cont : 123 pas 123456789