aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/auth_api.html
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-01-21 18:33:45 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-01-21 18:33:45 +0000
commit576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a (patch)
tree044f9e15ce160c7b3ad7a3c6db4533de93367287 /phpBB/docs/auth_api.html
parent61d4209aafac6a58bc3cecffaab8f821c4149688 (diff)
downloadforums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar
forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar.gz
forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar.bz2
forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.tar.xz
forums-576bb754e9f5b074c7c7c9bdc2debea4b5f65e1a.zip
fixing some bugs, most being submitted grammatical/spelling errors.
git-svn-id: file:///svn/phpbb/trunk@6915 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/docs/auth_api.html')
-rw-r--r--phpBB/docs/auth_api.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/docs/auth_api.html b/phpBB/docs/auth_api.html
index edf23350ae..8e624eae83 100644
--- a/phpBB/docs/auth_api.html
+++ b/phpBB/docs/auth_api.html
@@ -216,7 +216,7 @@ body {
$auth = new auth();
</pre></blockquote>
- <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 seperately but in the same way.</p>
+ <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>
</div>
<a href="#top">Top</a>
@@ -349,9 +349,9 @@ $result = acl_getf_global(<code>option</code>)
<div class="paragraph">
- <p>A number of additional methods are available related to <code>auth</code>. These handle more basic functions such as adding user and group permissions, new options and clearing the user cache. These methods are contained within a seperate class, <code>auth_admin</code>. This can be found in <code>includes/acp/auth.php</code>.</p>
+ <p>A number of additional methods are available related to <code>auth</code>. These handle more basic functions such as adding user and group permissions, new options and clearing the user cache. These methods are contained within a separate class, <code>auth_admin</code>. This can be found in <code>includes/acp/auth.php</code>.</p>
- <p>To use any methods this class contains it first needs to be instantiated seperately from <code>auth</code>. This is achieved in the same way as <code>auth</code>:</p>
+ <p>To use any methods this class contains it first needs to be instantiated separately from <code>auth</code>. This is achieved in the same way as <code>auth</code>:</p>
<blockquote><pre>
$auth_admin = new auth_admin();