mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
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:
parent
8e59781b73
commit
afc0ef93c5
1 changed files with 5 additions and 0 deletions
|
@ -2248,6 +2248,11 @@ class user extends session
|
||||||
{
|
{
|
||||||
global $db;
|
global $db;
|
||||||
|
|
||||||
|
if (empty($this->data['user_new']))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (!function_exists('group_user_del'))
|
if (!function_exists('group_user_del'))
|
||||||
{
|
{
|
||||||
global $phpbb_root_path, $phpEx;
|
global $phpbb_root_path, $phpEx;
|
||||||
|
|
Loading…
Add table
Reference in a new issue