aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2005-09-25 14:33:07 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2005-09-25 14:33:07 +0000
commitdb5eb3acefeaf392ddee7f211925c8c866944719 (patch)
tree63b848d4d2eb694014836f0d61beac6a19e90f80 /phpBB/docs/coding-guidelines.html
parentb4fb7155314320e9e9e8e4b8f0f86478d9c00943 (diff)
downloadforums-db5eb3acefeaf392ddee7f211925c8c866944719.tar
forums-db5eb3acefeaf392ddee7f211925c8c866944719.tar.gz
forums-db5eb3acefeaf392ddee7f211925c8c866944719.tar.bz2
forums-db5eb3acefeaf392ddee7f211925c8c866944719.tar.xz
forums-db5eb3acefeaf392ddee7f211925c8c866944719.zip
- adjusting group functions a little bit
git-svn-id: file:///svn/phpbb/trunk@5228 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index c6493066d3..ee0b9f4e86 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -758,7 +758,7 @@ $start = request_var('start', '0');
<p>Sessions should be initiated on each page, as near the top as possible using the following code:</p>
<blockquote><pre>
-$user->start();
+$user->session_begin();
$auth->acl($user->data);
$user->setup();
</pre></blockquote>