add check to newly registered function to not execute this more than once

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9644 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2009-06-21 11:13:20 +00:00
parent 8e59781b73
commit afc0ef93c5

View file

@ -2248,6 +2248,11 @@ class user extends session
{
global $db;
if (empty($this->data['user_new']))
{
return false;
}
if (!function_exists('group_user_del'))
{
global $phpbb_root_path, $phpEx;