summaryrefslogtreecommitdiff
path: root/core/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-17 19:06:39 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-17 19:06:39 +0000
commit9b6ccfc7f3b495ddc62304ae51da6c1b96810f2b (patch)
tree21f01f7ed42dd2b3a7c5a55a76fdf3531a9b52fc /core/helpers
parent26f0b4e44d90230f5a3f292b36f1e65b6eb32365 (diff)
Fix some lint errors
Diffstat (limited to 'core/helpers')
-rw-r--r--core/helpers/core_installer.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/helpers/core_installer.php b/core/helpers/core_installer.php
index f71bec6d..9dffeb8d 100644
--- a/core/helpers/core_installer.php
+++ b/core/helpers/core_installer.php
@@ -83,10 +83,10 @@ class core_installer {
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
$db->query("CREATE TABLE `sessions` (
- `session_id` varchar(127) NOT NULL,
- `last_activity` int(10) UNSIGNED NOT NULL,
- `data` text NOT NULL,
- PRIMARY KEY (`session_id`))
+ `session_id` varchar(127) NOT NULL,
+ `last_activity` int(10) UNSIGNED NOT NULL,
+ `data` text NOT NULL,
+ PRIMARY KEY (`session_id`))
ENGINE=InnoDB DEFAULT CHARSET=utf8;");
$db->query("CREATE TABLE `vars` (