Fix bug: Subtitle was not escaped

This commit is contained in:
Christian Weiske 2011-08-17 18:24:26 +02:00
parent 34600fe502
commit 000daf70ca
2 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,7 @@ if(!isset($_GET['popup'])) {
<?php
if (isset($subtitle)) {
echo '<h2>'. $subtitle ."</h2>\n";
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";

View File

@ -6,6 +6,7 @@ ChangeLog for SemantiScuttle
0.98.4 - 2011-XX-XX
-------------------
- Fix bug: URLs were escaped too often in bookmark list
- Fix bug: Subtitle was not escaped
0.98.3 - 2011-08-09