diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 21:12:35 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 21:12:35 -0700 |
commit | e4eedadcbb42e831f9649e6b52bd1ee9bf86f544 (patch) | |
tree | 2e93f34e2951c8c9138081790bacd65e47c9b9d2 /installer/installer.php | |
parent | 3aef420d485871ed95be742bae0d971e637e4a75 (diff) |
Add back mysql_fetch_object() call that I accidentally removed in my
rush to catch a plane.
Diffstat (limited to 'installer/installer.php')
-rw-r--r-- | installer/installer.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/installer/installer.php b/installer/installer.php index 50657d80..fedb4251 100644 --- a/installer/installer.php +++ b/installer/installer.php @@ -110,6 +110,7 @@ class installer { static function mysql_version($config) { $result = mysql_query("SHOW VARIABLES WHERE variable_name = \"version\""); + $row = mysql_fetch_object($result); return $row->Value; } |