Followup r105575, r105619, r105671 Add RELEASE-NOTES-1.19
authorSam Reed <reedy@users.mediawiki.org>
Fri, 9 Dec 2011 14:48:34 +0000 (14:48 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Fri, 9 Dec 2011 14:48:34 +0000 (14:48 +0000)
RELEASE-NOTES-1.19
includes/Cdb.php

index 6d56f6e..a98a6b6 100644 (file)
@@ -101,6 +101,7 @@ production.
 * Differences in the history page now uses slightly better colors for people
   perceiving colors differently. Colors comes from the French Wikipedia.
 * (bug 32879) Upgrade jQuery to 1.7.1
+* jQuery UI upgraded to 1.8.17
 
 === Bug fixes in 1.19 ===
 * $wgUploadNavigationUrl should be used for file redlinks if.
index 1ea3a11..94aa192 100644 (file)
@@ -85,11 +85,15 @@ abstract class CdbWriter {
 
        /**
         * Create the object and open the file
+        *
+        * @param $fileName string
         */
        abstract function __construct( $fileName );
 
        /**
         * Set a key to a given value. The value will be converted to string.
+        * @param $key string
+        * @param $value string
         */
        abstract public function set( $key, $value );
 
@@ -100,7 +104,6 @@ abstract class CdbWriter {
        abstract public function close();
 }
 
-
 /**
  * Reader class which uses the DBA extension
  */