Fix bug: Subtitle was not escaped
This commit is contained in:
parent
34600fe502
commit
000daf70ca
2 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,7 @@ if(!isset($_GET['popup'])) {
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if (isset($subtitle)) {
|
if (isset($subtitle)) {
|
||||||
echo '<h2>'. $subtitle ."</h2>\n";
|
echo '<h2>'. htmlspecialchars($subtitle) ."</h2>\n";
|
||||||
}
|
}
|
||||||
if(DEBUG_MODE) {
|
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";
|
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";
|
||||||
|
|
|
@ -6,6 +6,7 @@ ChangeLog for SemantiScuttle
|
||||||
0.98.4 - 2011-XX-XX
|
0.98.4 - 2011-XX-XX
|
||||||
-------------------
|
-------------------
|
||||||
- Fix bug: URLs were escaped too often in bookmark list
|
- Fix bug: URLs were escaped too often in bookmark list
|
||||||
|
- Fix bug: Subtitle was not escaped
|
||||||
|
|
||||||
|
|
||||||
0.98.3 - 2011-08-09
|
0.98.3 - 2011-08-09
|
||||||
|
|
Loading…
Reference in a new issue