From: garvinhicking Date: Tue, 11 Jul 2006 12:42:06 +0000 (+0000) Subject: fix quote X-Git-Tag: 1.0.1~12 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=637600cab06d204545486f8b05e5285117e52456;p=s9y.git fix quote --- diff --git a/docs/NEWS b/docs/NEWS index ea1f9be..628bfdc 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -3,6 +3,9 @@ Version 1.0.1 () ------------------------------------------------------------------------ + * Chorizo Security Checks: Fixed possible browser-dependant attribute + injection in the templatechooser-Plugin (garvinhicking) + * Fixed icelandic language bug preventing upgrade (garvinhicking) Version 1.0 (June 15th, 2006) diff --git a/include/functions_permalinks.inc.php b/include/functions_permalinks.inc.php index de575a8..b97dd05 100644 --- a/include/functions_permalinks.inc.php +++ b/include/functions_permalinks.inc.php @@ -702,13 +702,15 @@ function serendipity_currentURL() { '"', "'", '<', - '>' + '>', + '`', ), array( '', '', '', + '', '' ), diff --git a/serendipity_config.inc.php b/serendipity_config.inc.php index 4f2566a..db46b68 100644 --- a/serendipity_config.inc.php +++ b/serendipity_config.inc.php @@ -21,7 +21,7 @@ if (IS_installed === true && !defined('IN_serendipity')) { include_once(S9Y_INCLUDE_PATH . 'include/compat.inc.php'); // The version string -$serendipity['version'] = '1.0'; +$serendipity['version'] = '1.0.1'; // Name of folder for the default theme $serendipity['defaultTemplate'] = 'carl_contest';