r17780 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r17779‎ | r17780 | r17781 >
Date:11:30, 18 November 2006
Author:brion
Status:old
Tags:
Comment:
* (bug 7970) Use current connection explicitly on Database::getServerVersion
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/Database.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/Database.php
@@ -1833,7 +1833,7 @@
18341834 * @return string Version information from the database
18351835 */
18361836 function getServerVersion() {
1837 - return mysql_get_server_info();
 1837+ return mysql_get_server_info( $this->mConn );
18381838 }
18391839
18401840 /**
Index: trunk/phase3/RELEASE-NOTES
@@ -200,6 +200,7 @@
201201 * (bug 7918) "Templates used on this page" is now shown for read-only pages.
202202 * (bug 7688) When viewing diff, section anchors in autosummary jump to section
203203 on current page instead of loading the latest version.
 204+* (bug 7970) Use current connection explicitly on Database::getServerVersion
204205
205206
206207 == Languages updated ==