aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/auth_api.html
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2013-09-25 16:49:12 -0700
committerDavid King <imkingdavid@gmail.com>2013-09-25 16:49:12 -0700
commit779688b56b4fc22f975cb1b2a39b55d4b9afc231 (patch)
treedf087d6bdc7343527a71c1c78846e789d99ae8b4 /phpBB/docs/auth_api.html
parent427f73a3238e54f1a3e44047716c88ee93c7fcfe (diff)
parent6d5be041e46b65c4ac60bc0f66cc365988593775 (diff)
downloadforums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar
forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar.gz
forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar.bz2
forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.tar.xz
forums-779688b56b4fc22f975cb1b2a39b55d4b9afc231.zip
Merge pull request #1733 from nickvergessen/ticket/11866
Ticket/11866 Fix some more namespace issues
Diffstat (limited to 'phpBB/docs/auth_api.html')
-rw-r--r--phpBB/docs/auth_api.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/auth_api.html b/phpBB/docs/auth_api.html
index f45ea5e5c8..c68ae7821f 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 phpbb_auth();
+$auth = new phpbb\auth\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>