aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
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>