diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-08-31 00:32:41 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-08-31 00:32:41 -0700 |
commit | 6d26b0dd6e900250072ca723c388cf3c5d987aeb (patch) | |
tree | 392f46f356e44c4900954e346c3b56a18be95dc6 /installer | |
parent | 2bf9b8ee550a805605f862c392839e49ae42f89d (diff) | |
parent | 12e00309cedb3ed4349ab70a38d64e2b439c5f20 (diff) |
Merge commit 'upstream/master'
Diffstat (limited to 'installer')
-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; } |