diff options
author | javiexin <javiexin@gmail.com> | 2015-07-09 20:02:39 +0200 |
---|---|---|
committer | javiexin <javiexin@gmail.com> | 2015-07-09 20:02:39 +0200 |
commit | 054da801144c5e6f70a3c7fcd8244c38e2a1c619 (patch) | |
tree | dbbdb2dcb9cea44e67a5d0122946167786c557fe /phpBB/docs/coding-guidelines.html | |
parent | 558d604d83fd5ded2edc854a9944ad0d1188e2e5 (diff) | |
parent | f576f42b4d3c607aee6b30154502adfed79301fb (diff) | |
download | forums-054da801144c5e6f70a3c7fcd8244c38e2a1c619.tar forums-054da801144c5e6f70a3c7fcd8244c38e2a1c619.tar.gz forums-054da801144c5e6f70a3c7fcd8244c38e2a1c619.tar.bz2 forums-054da801144c5e6f70a3c7fcd8244c38e2a1c619.tar.xz forums-054da801144c5e6f70a3c7fcd8244c38e2a1c619.zip |
Merge pull request #1 from phpbb/3.1.x
Bring version up to date 20150708
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r-- | phpBB/docs/coding-guidelines.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html index 4c5fe73543..26189235ef 100644 --- a/phpBB/docs/coding-guidelines.html +++ b/phpBB/docs/coding-guidelines.html @@ -6,7 +6,7 @@ <meta name="description" content="Ascraeus coding guidelines document" /> <title>phpBB3 • Coding Guidelines</title> -<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen, projection" /> +<link href="assets/css/stylesheet.css" rel="stylesheet" type="text/css" media="screen" /> </head> @@ -300,9 +300,9 @@ PHPBB_QA (Set board to QA-Mode, which means the updater also c <div class="indent"> <p><code>$current_user</code> is right, but <code>$currentuser</code> and <code> $currentUser</code> are not.</p> </div> - + <p>In JavaScript, variable names should use camel case:</p> - + <div class="indent"> <p><code>currentUser</code> is right, but <code>currentuser</code> and <code>current_user</code> are not.</p> </div> @@ -431,7 +431,7 @@ function do_stuff() ... }</pre> </div> - + <p>In JavaScript code, braces always go on the same line:</p> <div class="codebox"><pre> @@ -2568,7 +2568,7 @@ if (utf8_case_fold_nfc($string1) == utf8_case_fold_nfc($string2)) </div></div> <div> - <a id="bottom" name="bottom" accesskey="z"></a> + <a id="bottom" accesskey="z"></a> </div> </body> |