1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

User, IP and email banning admin functional

git-svn-id: file:///svn/phpbb/trunk@781 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-08-01 19:59:04 +00:00
parent 21a6090308
commit 4d8f7cd8a5
7 changed files with 445 additions and 21 deletions

View File

@@ -276,7 +276,7 @@ function init_userprefs($userdata)
if( !defined("TEMPLATE_CONFIG") )
{
message_die(CRITICAL_MESSAGE, "Couldn't open " . $board_config['default_template'] . " template config file");
message_die(CRITICAL_ERROR, "Couldn't open " . $board_config['default_template'] . " template config file");
}
}
@@ -354,7 +354,7 @@ function decode_ip($int_ip)
//
function create_date($format, $gmepoch, $tz)
{
return (gmdate($format, $gmepoch + (3600 * $tz)));
return (@gmdate($format, $gmepoch + (3600 * $tz)));
}
//
@@ -362,7 +362,7 @@ function create_date($format, $gmepoch, $tz)
//
function get_gmt_ts()
{
$time = time();
$time = @time();
return($time);
}