Oops, search_index table was still registered and language and language_strings weren't
authorDan
Thu, 17 Jan 2008 09:39:56 -0500
changeset 350 dd7cbc97f681
parent 349 fdaf9070566c
child 353 2398420f48e7
Oops, search_index table was still registered and language and language_strings weren't
includes/common.php
install/includes/payload.php
install/schemas/mysql_stage2.sql
install/schemas/postgresql_stage2.sql
--- a/includes/common.php	Thu Jan 17 02:03:33 2008 -0500
+++ b/includes/common.php	Thu Jan 17 09:39:56 2008 -0500
@@ -282,7 +282,10 @@
     table_prefix.'acl',
     table_prefix.'page_groups',
     table_prefix.'page_group_members',
-    table_prefix.'tags'
+    table_prefix.'tags',
+    table_prefix.'language',
+    table_prefix.'language_strings',
+    table_prefix.'lockout'
   );
 
 // Load plugin manager
--- a/install/includes/payload.php	Thu Jan 17 02:03:33 2008 -0500
+++ b/install/includes/payload.php	Thu Jan 17 09:39:56 2008 -0500
@@ -279,7 +279,7 @@
 RewriteCond %{REQUEST_FILENAME} !-d
 
 # Main rule - short and sweet
-RewriteRule (.*) index.php?title=\$1
+RewriteRule (.*) index.php?title=\$1 [L,QSA]
 
 EOF;
     fwrite($hh, $hhc);
--- a/install/schemas/mysql_stage2.sql	Thu Jan 17 02:03:33 2008 -0500
+++ b/install/schemas/mysql_stage2.sql	Thu Jan 17 09:39:56 2008 -0500
@@ -181,12 +181,6 @@
   PRIMARY KEY ( hit_id ) 
 ) CHARACTER SET `utf8` COLLATE `utf8_bin`;
 
-CREATE TABLE {{TABLE_PREFIX}}search_index(
-  word varchar(64) NOT NULL,
-  page_names text,
-  PRIMARY KEY ( word ) 
-) CHARACTER SET `utf8` COLLATE `utf8_bin`;
-
 CREATE TABLE {{TABLE_PREFIX}}groups(
   group_id mediumint(5) UNSIGNED NOT NULL auto_increment,
   group_name varchar(64),
--- a/install/schemas/postgresql_stage2.sql	Thu Jan 17 02:03:33 2008 -0500
+++ b/install/schemas/postgresql_stage2.sql	Thu Jan 17 09:39:56 2008 -0500
@@ -177,12 +177,6 @@
   PRIMARY KEY ( hit_id ) 
 );
 
-CREATE TABLE {{TABLE_PREFIX}}search_index(
-  word varchar(64) NOT NULL,
-  page_names text,
-  PRIMARY KEY ( word ) 
-);
-
 CREATE TABLE {{TABLE_PREFIX}}groups(
   group_id SERIAL,
   group_name varchar(64),