diff options
author | John <opelastra.mm@gmail.com> | 2014-08-22 14:32:04 +0300 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-09-14 06:30:03 -0700 |
commit | e4401b2534a8ce9570d8f37e0f4e9627dd411d0c (patch) | |
tree | 7551979670c347194e136992f6c155759a1f6805 /phpBB | |
parent | d2ed2c4e1e87a8cf84454d04190a44e78a832d04 (diff) | |
download | forums-e4401b2534a8ce9570d8f37e0f4e9627dd411d0c.tar forums-e4401b2534a8ce9570d8f37e0f4e9627dd411d0c.tar.gz forums-e4401b2534a8ce9570d8f37e0f4e9627dd411d0c.tar.bz2 forums-e4401b2534a8ce9570d8f37e0f4e9627dd411d0c.tar.xz forums-e4401b2534a8ce9570d8f37e0f4e9627dd411d0c.zip |
[ticket/13040] Fix W3C validator warning in overall_footer.html
Added a non-breaking space to remove the following warning:
**Empty heading.**
```html
<h3 class="alert_title"></h3><p class="alert_text"></p>
```
PHPBB3-13040
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_footer.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html index e9c95aa799..275859ac97 100644 --- a/phpBB/styles/prosilver/template/overall_footer.html +++ b/phpBB/styles/prosilver/template/overall_footer.html @@ -22,7 +22,7 @@ <div id="phpbb_alert" class="phpbb_alert" data-l-err="{L_ERROR}" data-l-timeout-processing-req="{L_TIMEOUT_PROCESSING_REQ}"> <a href="#" class="alert_close"></a> - <h3 class="alert_title"></h3><p class="alert_text"></p> + <h3 class="alert_title"> </h3><p class="alert_text"></p> </div> <div id="phpbb_confirm" class="phpbb_alert"> <a href="#" class="alert_close"></a> |