From d7c2c9d47216297820512f5541cec4ae912ca603 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 21 Mar 2014 17:04:58 +0100 Subject: [PATCH] [ticket/12286] Add note that goto should not be used PHPBB3-12286 --- phpBB/docs/coding-guidelines.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html index f9d1dbbc47..6c0f07a5a9 100644 --- a/phpBB/docs/coding-guidelines.html +++ b/phpBB/docs/coding-guidelines.html @@ -1151,6 +1151,14 @@ append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&

The e modifier in preg_replace can be replaced by preg_replace_callback and objects to encapsulate state that is needed in the callback code.

+

Other functions, operators, statements and keywords:

+ +

The following PHP statements should also not be used in phpBB:

+ + +
Back to Top