diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-28 15:17:07 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-28 15:17:07 -0700 |
commit | 1ce8643b8056266139552045fcdb48bbdb9c665b (patch) | |
tree | 9825e22add088ebffd14b592e5ab29afb52867c1 /installer/web.php | |
parent | 31d63a0d0a27212435a78eb38461320f486b5f95 (diff) |
Fix for #440. Basically add a check that the mysql version is > 5.0.0.
It was felt that actually listing the requirements might be overwhelming
to novice users.
Diffstat (limited to 'installer/web.php')
-rw-r--r-- | installer/web.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/installer/web.php b/installer/web.php index f31c0644..aceb5368 100644 --- a/installer/web.php +++ b/installer/web.php @@ -41,6 +41,8 @@ if (installer::already_installed()) { if (!installer::connect($config)) { $content = render("invalid_db_info.html.php"); + } else if (!installer::verify_version($config)) { + $content = render("invalid_db_version.html.php"); } else if (!installer::select_db($config)) { $content = render("missing_db.html.php"); } else if (!installer::db_empty($config)) { |