summaryrefslogtreecommitdiff
path: root/core/helpers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-12-12 19:39:38 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-12-12 19:39:38 +0000
commit942dbe175ca1697c0cca99fb7aae03de6ca398e0 (patch)
tree4a11b205c730c261961d3000bb471702c16a9f6a /core/helpers
parent7715aa9c64e190585eda165a31c42de139bcd416 (diff)
Remove a couple of todo's by store the "theme name", "admin theme name" and "page size" in the vars table and initializing when the core module is installed
Diffstat (limited to 'core/helpers')
-rw-r--r--core/helpers/core_installer.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/helpers/core_installer.php b/core/helpers/core_installer.php
index 8f24b659..27f8782e 100644
--- a/core/helpers/core_installer.php
+++ b/core/helpers/core_installer.php
@@ -110,6 +110,10 @@ class core_installer {
->save();
access::add_item($root);
+ module::set_var("core", "active_theme", "default");
+ module::set_var("core", "active_admin_theme", "default_admin");
+ module::set_var("core", "page_size", 9);
+
module::set_version("core", 1);
}
}