summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-17 15:10:34 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-17 15:10:34 -0400
commitd748318f7f0a421e6947903b0b9504aabd4d6a17 (patch)
tree8218798e8bda43421e820d6ea0f02ed7bc8238de
parentbb13901a50bd65bf83411aa2140220ed697b91ed (diff)
require stream stuff
darcs-hash:20080517191034-84dde-eebc08698104692bd67e00b9feffb0dd19f5c2b9.gz
-rw-r--r--actions/all.php2
-rw-r--r--actions/public.php2
-rw-r--r--actions/showstream.php2
3 files changed, 6 insertions, 0 deletions
diff --git a/actions/all.php b/actions/all.php
index 452232929..f74b3ff9c 100644
--- a/actions/all.php
+++ b/actions/all.php
@@ -19,6 +19,8 @@
if (!defined('LACONICA')) { exit(1); }
+require_once(INSTALLDIR.'/actions/showstream.php');
+
class AllAction extends ShowstreamAction {
// XXX: push this up to a common function.
diff --git a/actions/public.php b/actions/public.php
index c8e6e36cf..5b1e50fa3 100644
--- a/actions/public.php
+++ b/actions/public.php
@@ -19,6 +19,8 @@
if (!defined('LACONICA')) { exit(1); }
+require_once(INSTALLDIR.'/lib/stream.php');
+
class PublicAction extends StreamAction {
function handle($args) {
diff --git a/actions/showstream.php b/actions/showstream.php
index 1f9fb935d..004f238df 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -19,6 +19,8 @@
if (!defined('LACONICA')) { exit(1); }
+require_once(INSTALLDIR.'/lib/stream.php');
+
define('SUBSCRIPTIONS_PER_ROW', 5);
define('SUBSCRIPTIONS', 80);