diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 02:54:39 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 18:14:11 +0200 |
commit | 9236dd4c471a6f7655bd00ae422a13013a400ac4 (patch) | |
tree | 5f08e769821991d6e557848dec1d630ef2892653 /phpBB/docs/auth_api.html | |
parent | 6deb7b3671c29ab7ce1db6e11b5c6be0950d265f (diff) | |
download | forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.gz forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.bz2 forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.tar.xz forums-9236dd4c471a6f7655bd00ae422a13013a400ac4.zip |
[feature/class-prefix] Rename auth => phpbb_auth
PHPBB3-10609
Diffstat (limited to 'phpBB/docs/auth_api.html')
-rw-r--r-- | phpBB/docs/auth_api.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/auth_api.html b/phpBB/docs/auth_api.html index 40a63eaa9d..2302140030 100644 --- a/phpBB/docs/auth_api.html +++ b/phpBB/docs/auth_api.html @@ -86,7 +86,7 @@ <p>To use any methods contained with the <code>auth</code> class it first needs to be instantiated. This is best achieved early in the execution of the script in the following manner:</p> <div class="codebox"><pre> -$auth = new auth(); +$auth = new phpbb_auth(); </pre></div> <p>Once an instance of the class has been created you are free to call the various methods it contains. Please note that should you wish to use the <code>auth_admin</code> methods you will need to instantiate this separately but in the same way.</p> |