aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-28 17:14:09 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-28 17:14:09 +0100
commitf88e9d1c04f2eaef5eb433f6a0b68abd5dd77d39 (patch)
tree46cc96b0cdbae53c0330c5defebfa75871afa892 /phpBB/docs/coding-guidelines.html
parentd7c2c9d47216297820512f5541cec4ae912ca603 (diff)
downloadforums-f88e9d1c04f2eaef5eb433f6a0b68abd5dd77d39.tar
forums-f88e9d1c04f2eaef5eb433f6a0b68abd5dd77d39.tar.gz
forums-f88e9d1c04f2eaef5eb433f6a0b68abd5dd77d39.tar.bz2
forums-f88e9d1c04f2eaef5eb433f6a0b68abd5dd77d39.tar.xz
forums-f88e9d1c04f2eaef5eb433f6a0b68abd5dd77d39.zip
[ticket/12286] Fix nesting of ul inside li element
PHPBB3-12286
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html16
1 files changed, 9 insertions, 7 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 6c0f07a5a9..cd8163500c 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -1688,13 +1688,15 @@ parent = prosilver
<ul>
<li>An event name must be all lowercase, with each word separated by an underscore.</li>
<li>An event name must briefly describe the location and purpose of the event.</li>
- <li>An event name must end with one of the following suffixes:</li>
- <ul>
- <li><code>_prepend</code> - This event adds an item to the beginning of a block of related items, or adds to the beginning of individual items in a block.</li>
- <li><code>_append</code> - This event adds an item to the end of a block of related items, or adds to the end of individual items in a block.</li>
- <li><code>_before</code> - This event adds content directly before the specified block</li>
- <li><code>_after</code> - This event adds content directly after the specified block</li>
- </ul>
+ <li>
+ An event name must end with one of the following suffixes:
+ <ul>
+ <li><code>_prepend</code> - This event adds an item to the beginning of a block of related items, or adds to the beginning of individual items in a block.</li>
+ <li><code>_append</code> - This event adds an item to the end of a block of related items, or adds to the end of individual items in a block.</li>
+ <li><code>_before</code> - This event adds content directly before the specified block</li>
+ <li><code>_after</code> - This event adds content directly after the specified block</li>
+ </ul>
+ </li>
</ul>
<h4>Template event documentation</h4>