Browse Source

Merge pull request #815 from Oldiesmann/release-2.1

! Forgot the semicolon
Michael Eshom 10 years ago
parent
commit
aa75018777
3 changed files with 3 additions and 3 deletions
  1. 1 1
      other/upgrade_2-1_mysql.sql
  2. 1 1
      other/upgrade_2-1_postgresql.sql
  3. 1 1
      other/upgrade_2-1_sqlite.sql

+ 1 - 1
other/upgrade_2-1_mysql.sql

@@ -503,5 +503,5 @@ $get_questions = upgrade_query("
 /******************************************************************************/
 ---# Updating log_packages
 UPDATE {$db_prefix}log_packages
-SET install_state = 0
+SET install_state = 0;
 ---#

+ 1 - 1
other/upgrade_2-1_postgresql.sql

@@ -577,5 +577,5 @@ ALTER TABLE {$db_prefix}log_online ALTER ip TYPE bigint;
 /******************************************************************************/
 ---# Updating log_packages
 UPDATE {$db_prefix}log_packages
-SET install_state = 0
+SET install_state = 0;
 ---#

+ 1 - 1
other/upgrade_2-1_sqlite.sql

@@ -560,5 +560,5 @@ CREATE TABLE IF NOT EXISTS {$db_prefix}qanda (
 /******************************************************************************/
 ---# Updating log_packages
 UPDATE {$db_prefix}log_packages
-SET install_state = 0
+SET install_state = 0;
 ---#