From 772e7026e7141f4b43778d0c7121280170a6516e Mon Sep 17 00:00:00 2001 From: Heiko August Date: Thu, 23 Feb 2017 14:32:38 +0100 Subject: [PATCH] Change: corrected the last occurence of an outdated version string --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 79f0ad1..ddbe524 100644 --- a/install.php +++ b/install.php @@ -272,7 +272,7 @@ function update16to17() @mysql_query("INSERT INTO ".$db_settings['settings_table']." (name, value) VALUES ('captcha_contact','".$settings['captcha_contact']."')", $connid) or $errors[] = $lang_add['insert_settings_error']." (MySQL: ".mysql_error($connid).")"; @mysql_query("INSERT INTO ".$db_settings['settings_table']." (name, value) VALUES ('captcha_register','".$settings['captcha_register']."')", $connid) or $errors[] = $lang_add['insert_settings_error']." (MySQL: ".mysql_error($connid).")"; @mysql_query("INSERT INTO ".$db_settings['settings_table']." (name, value) VALUES ('captcha_type','".$settings['captcha_type']."')", $connid) or $errors[] = $lang_add['insert_settings_error']." (MySQL: ".mysql_error($connid).")"; - @mysql_query("UPDATE ".$db_settings['settings_table']." SET value='1.7.7' WHERE name = 'version'", $connid) or $errors[] = $lang_add['update_error']. " (MySQL: ".mysql_error($connid).")"; + @mysql_query("UPDATE ".$db_settings['settings_table']." SET value='1.7.7.2' WHERE name = 'version'", $connid) or $errors[] = $lang_add['update_error']. " (MySQL: ".mysql_error($connid).")"; if(isset($errors)) return $errors; else return false; } function update17()