Fixed encoding issue
authorAlexander Ebert <ebert@woltlab.com>
Fri, 24 Feb 2017 15:46:03 +0000 (16:46 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 24 Feb 2017 15:46:03 +0000 (16:46 +0100)
com.woltlab.wcf/package.xml
wcfsetup/install/files/lib/system/WCF.class.php

index 2aaa38b9045aac486003e285598dea447573b8fc..3d200da46c6b9f9ff4febaa523e587490d99edd5 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.0.14</version> <!-- codename: maelstrom -->
-               <date>2016-10-18</date>
+               <version>2.0.15</version> <!-- codename: maelstrom -->
+               <date>2017-02-24</date>
        </packageinformation>
        
        <authorinformation>
                <instruction type="script">acp/post_install.php</instruction>
        </instructions>
        
-       <instructions type="update" fromversion="2.0.13">
-               <instruction type="acpTemplate">acptemplates_update.tar</instruction>
+       <instructions type="update" fromversion="2.0.14">
                <instruction type="file">files_update.tar</instruction>
-               <instruction type="template">templates_update.tar</instruction>
-               
-               <instruction type="language">language/*.xml</instruction>
-               
-               <instruction type="option">option.xml</instruction>
-       </instructions>
-       <instructions type="update" fromversion="2.0.13 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">language/*.xml</instruction>
-               
-               <instruction type="option">option.xml</instruction>
        </instructions>
 </package>
index 39229a3edc62ac4985b05c22c5b81fe3147eeca7..a95fc364d177a5dbb3bbcb65ea25f1c53bcc05eb 100644 (file)
@@ -38,7 +38,7 @@ if (!@ini_get('date.timezone')) {
 }
 
 // define current wcf version
-define('WCF_VERSION', '2.0.14 (Maelstrom)');
+define('WCF_VERSION', '2.0.15 (Maelstrom)');
 
 // define current unix timestamp
 define('TIME_NOW', time());
@@ -736,7 +736,7 @@ class WCF {
         * @return      string
         */
        public function getAnchor($fragment) {
-               return self::getRequestURI() . '#' . $fragment;
+               return StringUtil::encodeHTML(self::getRequestURI() . '#' . $fragment);
        }
        
        /**