Skip to content

Commit

Permalink
Change: corrected the last occurence of an outdated version string
Browse files Browse the repository at this point in the history
  • Loading branch information
auge8472 committed Feb 23, 2017
1 parent f90552d commit 772e702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 772e702

Please sign in to comment.