And why in hell didn't these commit ... they were in the list "days" ago ... ggrrr

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3298 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-01-10 13:22:00 +00:00
parent 6b801753e1
commit 94856fcb83
2 changed files with 2 additions and 2 deletions

View file

@ -83,7 +83,7 @@ if (
// session id check
if ($sid == '' || $sid != $userdata['session_id'])
{
message_die(ERROR, 'Invalid_session');
message_die(GENERAL_ERROR, 'Invalid_session');
}
include($phpbb_root_path . 'includes/functions_validate.'.$phpEx);

View file

@ -32,7 +32,7 @@ if ( isset($HTTP_POST_VARS['submit']) )
// session id check
if ($sid == '' || $sid != $userdata['session_id'])
{
message_die(ERROR, 'Invalid_session');
message_die(GENERAL_ERROR, 'Invalid_session');
}
$username = ( !empty($HTTP_POST_VARS['username']) ) ? trim(strip_tags($HTTP_POST_VARS['username'])) : '';