diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-08-28 16:38:02 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-08-28 16:38:02 -0600 |
commit | 974e8f9547284e052eef2d8b9668f9e85c585b49 (patch) | |
tree | f5c99f379ff8bea79e6f4660354f5829b7beabd6 /installer/web.php | |
parent | fc1c4d5119959a4db0d49b7c0aa618749f27c740 (diff) | |
parent | 1ce8643b8056266139552045fcdb48bbdb9c665b (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
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)) { |