diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-09-25 14:33:07 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-09-25 14:33:07 +0000 |
commit | db5eb3acefeaf392ddee7f211925c8c866944719 (patch) | |
tree | 63b848d4d2eb694014836f0d61beac6a19e90f80 /phpBB/docs/coding-guidelines.html | |
parent | b4fb7155314320e9e9e8e4b8f0f86478d9c00943 (diff) | |
download | forums-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.html | 2 |
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> |