diff options
Diffstat (limited to 'installer')
-rw-r--r-- | installer/install.sql | 3 | ||||
-rw-r--r-- | installer/views/get_db_info.html.php | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/installer/install.sql b/installer/install.sql index 28a9caa5..ebe3651d 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -42,6 +42,7 @@ CREATE TABLE {caches} ( `expiration` int(9) NOT NULL, `cache` longblob, PRIMARY KEY (`id`), + KEY `key` (`key`), KEY `tags` (`tags`) ) DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; @@ -239,7 +240,7 @@ CREATE TABLE {modules} ( UNIQUE KEY `name` (`name`) ) AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -INSERT INTO {modules} VALUES (1,1,'gallery',29); +INSERT INTO {modules} VALUES (1,1,'gallery',30); INSERT INTO {modules} VALUES (2,1,'user',3); INSERT INTO {modules} VALUES (3,1,'comment',2); INSERT INTO {modules} VALUES (4,1,'organize',1); diff --git a/installer/views/get_db_info.html.php b/installer/views/get_db_info.html.php index ada0793c..1eeecd91 100644 --- a/installer/views/get_db_info.html.php +++ b/installer/views/get_db_info.html.php @@ -57,7 +57,7 @@ Password </td> <td> - <input name="dbpass" value=""/> + <input name="dbpass" value="" type="password" /> </td> </tr> <tr> |