diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-04-24 18:24:53 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-04-24 18:24:53 +0000 |
commit | 42ee5e7a54edb3f25d035da187637eb3ba52db1e (patch) | |
tree | c918df0a7fee632b3a87f022e12eb040d03e3d45 /phpBB/includes/functions_admin.php | |
parent | 5f58f0ff71184e9de523cb9bee6c19a654f246c9 (diff) | |
download | forums-42ee5e7a54edb3f25d035da187637eb3ba52db1e.tar forums-42ee5e7a54edb3f25d035da187637eb3ba52db1e.tar.gz forums-42ee5e7a54edb3f25d035da187637eb3ba52db1e.tar.bz2 forums-42ee5e7a54edb3f25d035da187637eb3ba52db1e.tar.xz forums-42ee5e7a54edb3f25d035da187637eb3ba52db1e.zip |
No functional changes, will only produce less PHP notices/warnings.
git-svn-id: file:///svn/phpbb/trunk@3949 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index fcc91b814a..01bbd60836 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -1689,7 +1689,7 @@ function event_execute($mode) } // Extension of auth class for changing permissions -if (class_exists(auth)) +if (class_exists('auth')) { class auth_admin extends auth { @@ -1957,7 +1957,7 @@ if (class_exists(auth)) } } -if (class_exists(template)) +if (class_exists('template')) { class template_admin extends template { |