Preparing release 2.1.13
authorAlexander Ebert <ebert@woltlab.com>
Fri, 24 Feb 2017 16:34:15 +0000 (17:34 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 24 Feb 2017 16:34:15 +0000 (17:34 +0100)
com.woltlab.wcf/package.xml
wcfsetup/install/files/lib/system/WCF.class.php

index a746be7c9c92e9d804629beb50450b35d5821b56..0e8fb05270394f7177702ac8d6b9f32cdbab5fcb 100644 (file)
@@ -5,8 +5,8 @@
                <packagedescription><![CDATA[Free web-framework, designed and developed for complex community applications.]]></packagedescription>
                <packagedescription language="de"><![CDATA[Freies Web-Framework, das für komplexe Community-Anwendungen entworfen und entwickelt wurde.]]></packagedescription>
                <isapplication>1</isapplication>
-               <version>2.1.12</version> <!-- codename: typhoon -->
-               <date>2016-10-18</date>
+               <version>2.1.13</version> <!-- codename: typhoon -->
+               <date>2017-02-24</date>
        </packageinformation>
        
        <authorinformation>
@@ -43,7 +43,7 @@
                <instruction type="script">acp/post_install.php</instruction>
        </instructions>
        
-       <instructions type="update" fromversion="2.0.14">
+       <instructions type="update" fromversion="2.0.15">
                <!-- pre-update check to prevent update from WCF < 2.0.10 -->
                <instruction type="file">pre_update_check.tar</instruction>
                <instruction type="script" run="standalone">acp/pre_update_com.woltlab.wcf_2.1.php</instruction>
                <instruction type="script" run="standalone">acp/rebuild_comments_com.woltlab.wcf_2.1.php</instruction>
        </instructions>
        
-       <instructions type="update" fromversion="2.1.11">
-               <instruction type="acpTemplate">acptemplates_update.tar</instruction>
+       <instructions type="update" fromversion="2.1.12">
                <instruction type="file">files_update.tar</instruction>
-               <instruction type="template">templates_update.tar</instruction>
-               
-               <instruction type="language" run="standalone">language/*.xml</instruction>
-               
-               <instruction type="sql" run="standalone">update_2.1.12.sql</instruction>
-               
-               <instruction type="option">option.xml</instruction>
-       </instructions>
-       <instructions type="update" fromversion="2.1.11 pl 1">
-               <instruction type="acpTemplate">acptemplates_update.tar</instruction>
-               <instruction type="file">files_update.tar</instruction>
-               <instruction type="template">templates_update.tar</instruction>
-               
-               <instruction type="language" run="standalone">language/*.xml</instruction>
-               
-               <instruction type="sql" run="standalone">update_2.1.12.sql</instruction>
-               
-               <instruction type="option">option.xml</instruction>
        </instructions>
 </package>
index 98ccaf7f820acd172da073235f18776527dbf111..0f32f281a3ef377878222a4239f9e80af79a9cd1 100644 (file)
@@ -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);
        }
        
        /**