aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2007-11-18 15:37:17 +0000
committerNils Adermann <naderman@naderman.de>2007-11-18 15:37:17 +0000
commit271e819d003ee92bba70d3a4532afbba15acf895 (patch)
treebdbf82e1bb4257b838c12c9b7947c0bfff0ea4bc /phpBB/docs/coding-guidelines.html
parent93a5ed70d9c29fe130aa909752f40b9b0aa7bf0c (diff)
downloadforums-271e819d003ee92bba70d3a4532afbba15acf895.tar
forums-271e819d003ee92bba70d3a4532afbba15acf895.tar.gz
forums-271e819d003ee92bba70d3a4532afbba15acf895.tar.bz2
forums-271e819d003ee92bba70d3a4532afbba15acf895.tar.xz
forums-271e819d003ee92bba70d3a4532afbba15acf895.zip
- Constant PHPBB_DB_NEW_LINK introduced which can be used to force phpBB to create a new database connection instead of reusing an existing one if the dbms supports it [Bug #14927]
- Automatic URL parsing no longer allows dots in the schema but can parse URLs starting after a dot [Bug #15110] - Dynamic width for birthday select boxes [Bug #15149] git-svn-id: file:///svn/phpbb/trunk@8246 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index d70e0be2a3..124ac74bb9 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -955,6 +955,10 @@ append_sid(&quot;{$phpbb_root_path}memberlist.$phpEx&quot;, 'mode=group&amp;amp;
</li>
</ul>
+ <h4>Exiting</h4>
+
+ <p>Your page should either call <code>page_footer()</code> in the end to trigger output through the template engine and terminate the script, or alternatively at least call the <code>exit_handler()</code>. That call is necessary because it provides a method for external applications embedding phpBB to be called at the end of the script.</p>
+
</div>
<div class="back2top"><a href="#wrap" class="top">Back to Top</a></div>