diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-12-14 03:48:32 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-12-14 03:48:32 +0000 |
commit | 1c279887aa261c887a4695f93c9aa18f012fe72a (patch) | |
tree | 988c42b3576da555d00a9c3c7db23c0acdd9f339 /modules | |
parent | fc1e7a933372929d32f2d56a23b3c79e6e72439b (diff) |
Should be get_var not set_var
Diffstat (limited to 'modules')
-rw-r--r-- | modules/tag/controllers/tags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/controllers/tags.php b/modules/tag/controllers/tags.php index 987cd69f..ee39bfec 100644 --- a/modules/tag/controllers/tags.php +++ b/modules/tag/controllers/tags.php @@ -22,7 +22,7 @@ class Tags_Controller extends REST_Controller { public function _show($tag) { $theme_name = module::get_var("core", "active_theme", "default"); - $page_size = module::set_var("core", "page_size", 9); + $page_size = module::get_var("core", "page_size", 9); $template = new Theme_View("page.html", "tag", $theme_name); |