aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-07-07 20:09:01 -0700
committerMatt Friedman <maf675@gmail.com>2015-07-07 20:09:01 -0700
commit498a5160176625ba0311a1853c5399372731e623 (patch)
tree7d733fcc1879e12e683ff01fe145dde552fbbb1c /phpBB/docs/coding-guidelines.html
parent60b4d5132f2023ade224676a6729b5f0847c4110 (diff)
downloadforums-498a5160176625ba0311a1853c5399372731e623.tar
forums-498a5160176625ba0311a1853c5399372731e623.tar.gz
forums-498a5160176625ba0311a1853c5399372731e623.tar.bz2
forums-498a5160176625ba0311a1853c5399372731e623.tar.xz
forums-498a5160176625ba0311a1853c5399372731e623.zip
[ticket/13995] Remove deprecated projection media type
PHPBB3-13995
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 4c5fe73543..08cd02766b 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 &bull; 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>