summaryrefslogtreecommitdiff
path: root/modules/rss/controllers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-12-21 21:27:43 -0800
committerBharat Mediratta <bharat@menalto.com>2009-12-21 21:27:43 -0800
commit8b9a02084a8205fce67860c98ed4ab72b1156a0c (patch)
tree4827cdd337c1e353279ef463aea8104becb063b2 /modules/rss/controllers
parent9285c8c66c530196399eb05bb5561c3fa5538335 (diff)
Updates for the latest version of Kohana 2.4:
1) Controller::$input is gone -- use Input::instance() now 2) Handle new 'database.<default>.connection.params' parameter 3) Handle new 'cache.<default>.prefix' parameter
Diffstat (limited to 'modules/rss/controllers')
-rw-r--r--modules/rss/controllers/rss.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/rss/controllers/rss.php b/modules/rss/controllers/rss.php
index a963a1dc..41c781d9 100644
--- a/modules/rss/controllers/rss.php
+++ b/modules/rss/controllers/rss.php
@@ -21,13 +21,13 @@ class Rss_Controller extends Controller {
public static $page_size = 20;
public function feed($module_id, $feed_id, $id=null) {
- $page = (int) $this->input->get("page", 1);
+ $page = (int) Input::instance()->get("page", 1);
if ($page < 1) {
url::redirect(url::merge(array("page" => 1)));
}
// Configurable page size between 1 and 100, default 20
- $page_size = max(1, min(100, (int) $this->input->get("page_size", self::$page_size)));
+ $page_size = max(1, min(100, (int) Input::instance()->get("page_size", self::$page_size)));
// Run the appropriate feed callback
if (module::is_active($module_id)) {