From de7add90ceb30350313c067ebd4599d63225f60f Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Fri, 9 Dec 2011 14:48:34 +0000 Subject: [PATCH] Followup r105575, r105619, r105671 Add RELEASE-NOTES-1.19 --- RELEASE-NOTES-1.19 | 1 + includes/Cdb.php | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.19 b/RELEASE-NOTES-1.19 index 6d56f6e788..a98a6b6bc8 100644 --- a/RELEASE-NOTES-1.19 +++ b/RELEASE-NOTES-1.19 @@ -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. diff --git a/includes/Cdb.php b/includes/Cdb.php index 1ea3a11802..94aa192574 100644 --- a/includes/Cdb.php +++ b/includes/Cdb.php @@ -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 */ -- 2.20.1