From: Alexander Ebert Date: Fri, 24 Feb 2017 16:34:15 +0000 (+0100) Subject: Preparing release 2.1.13 X-Git-Tag: 2.1.13~2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d896a2293ae83ce2517930e721f9186786053557;p=GitHub%2FWoltLab%2FWCF.git Preparing release 2.1.13 --- diff --git a/com.woltlab.wcf/package.xml b/com.woltlab.wcf/package.xml index a746be7c9c..0e8fb05270 100644 --- a/com.woltlab.wcf/package.xml +++ b/com.woltlab.wcf/package.xml @@ -5,8 +5,8 @@ 1 - 2.1.12 - 2016-10-18 + 2.1.13 + 2017-02-24 @@ -43,7 +43,7 @@ acp/post_install.php - + pre_update_check.tar acp/pre_update_com.woltlab.wcf_2.1.php @@ -89,26 +89,7 @@ acp/rebuild_comments_com.woltlab.wcf_2.1.php - - acptemplates_update.tar + files_update.tar - templates_update.tar - - language/*.xml - - update_2.1.12.sql - - option.xml - - - acptemplates_update.tar - files_update.tar - templates_update.tar - - language/*.xml - - update_2.1.12.sql - - option.xml diff --git a/wcfsetup/install/files/lib/system/WCF.class.php b/wcfsetup/install/files/lib/system/WCF.class.php index 98ccaf7f82..0f32f281a3 100644 --- a/wcfsetup/install/files/lib/system/WCF.class.php +++ b/wcfsetup/install/files/lib/system/WCF.class.php @@ -38,7 +38,7 @@ if (!@ini_get('date.timezone')) { } // define current wcf version -define('WCF_VERSION', '2.1.12 (Typhoon)'); +define('WCF_VERSION', '2.1.13 (Typhoon)'); // define current unix timestamp define('TIME_NOW', time()); @@ -759,7 +759,7 @@ class WCF { * @return string */ public function getAnchor($fragment) { - return self::getRequestURI() . '#' . $fragment; + return StringUtil::encodeHTML(self::getRequestURI() . '#' . $fragment); } /**