Browse Source

Merge pull request #885 from Oldiesmann/release-2.1

! typo
Michael Eshom 11 years ago
parent
commit
c641fefd6a
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

@@ -741,7 +741,7 @@ ADD COLUMN in_inbox tinyint(3) NOT NULL default '1';
 			$actions = serialize($actions);
 
 			$smcFunc['db_query']('', '
-				UPDATE {db_prefix}rules
+				UPDATE {db_prefix}pm_rules
 				SET actions = {string:actions}
 				WHERE id_rule = {int:id_rule}',
 				array(

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

@@ -821,7 +821,7 @@ ADD COLUMN in_inbox smallint NOT NULL default '1';
 			$actions = serialize($actions);
 
 			$smcFunc['db_query']('', '
-				UPDATE {db_prefix}rules
+				UPDATE {db_prefix}pm_rules
 				SET actions = {string:actions}
 				WHERE id_rule = {int:id_rule}',
 				array(

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

@@ -798,7 +798,7 @@ ADD COLUMN in_inbox tinyint(3) NOT NULL default '1';
 			$actions = serialize($actions);
 
 			$smcFunc['db_query']('', '
-				UPDATE {db_prefix}rules
+				UPDATE {db_prefix}pm_rules
 				SET actions = {string:actions}
 				WHERE id_rule = {int:id_rule}',
 				array(