diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 16:20:52 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 16:20:52 -0700 |
commit | 7015948357f91e79bb10595cd7c6bc2513d0863e (patch) | |
tree | d272757f1dc1e38426eeea80399b6313ea247adc /installer | |
parent | 74e204b557618520d7bc56266a25d230946f02e7 (diff) | |
parent | e4eedadcbb42e831f9649e6b52bd1ee9bf86f544 (diff) |
Merge branch 'master' of git@github.com:/gallery/gallery3
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; } |