aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorSenky <jakubsenko@gmail.com>2012-04-16 15:19:10 +0200
committerSenky <jakubsenko@gmail.com>2012-04-26 09:19:51 +0200
commit02cc32b901d29df4b67c0d09c02370cbaf61170d (patch)
treeef7d68e2be633caa69a007894c44e66c5d762052 /phpBB/docs/coding-guidelines.html
parent3741e99aab94fc903db82c1c4d3d6b1f7b1e2a1a (diff)
downloadforums-02cc32b901d29df4b67c0d09c02370cbaf61170d.tar
forums-02cc32b901d29df4b67c0d09c02370cbaf61170d.tar.gz
forums-02cc32b901d29df4b67c0d09c02370cbaf61170d.tar.bz2
forums-02cc32b901d29df4b67c0d09c02370cbaf61170d.tar.xz
forums-02cc32b901d29df4b67c0d09c02370cbaf61170d.zip
[ticket/10161] coding-guidelines.html updated
PHPBB3-10161
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 6d428916c7..e60d20cd43 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -356,7 +356,7 @@ phpbb_dir_subdir_class_name - includes/dir/subdir/class_name.php
<p>The basic philosophy here is to not hurt code clarity for the sake of laziness. This has to be balanced by a little bit of common sense, though; <code>print_login_status_for_a_given_user()</code> goes too far, for example -- that function would be better named <code>print_user_login_status()</code>, or just <code>print_login_status()</code>.</p>
<h4>Special Namings: </h4>
- <p>For all emoticons use the term <code>smiley</code> in singular and <code>smilies</code> in plural.</p>
+ <p>For all emoticons use the term <code>smiley</code> in singular and <code>smilies</code> in plural. For emails we use the term <code>email</code> (without dash between “e” and “m”)</p>
<a name="codelayout"></a><h3>2.ii. Code Layout</h3>