diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-08-18 16:18:28 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-08-18 16:18:28 +0200 |
commit | 1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa (patch) | |
tree | d3e86bace18e2a4c19c22359762231e19c37ce4c /data | |
parent | 880b94498ab07edc0990af183c2491b89eefe066 (diff) | |
download | semanticscuttle-1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa.tar.gz semanticscuttle-1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa.tar.bz2 |
revise bugfix of unescaped subtitle
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/default/top.inc.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/templates/default/top.inc.php b/data/templates/default/top.inc.php index f2adba4..240e5b2 100644 --- a/data/templates/default/top.inc.php +++ b/data/templates/default/top.inc.php @@ -48,8 +48,10 @@ if(!isset($_GET['popup'])) { ?></div> <?php -if (isset($subtitle)) { - echo '<h2>'. htmlspecialchars($subtitle) ."</h2>\n"; +if (isset($subtitlehtml)) { + echo '<h2>' . $subtitlehtml . "</h2>\n"; +} else if (isset($subtitle)) { + echo '<h2>' . htmlspecialchars($subtitle) . "</h2>\n"; } if(DEBUG_MODE) { echo '<p class="error">'. T_('Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.php.') ."</p>\n"; |