diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 20:14:28 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 20:14:28 +0000 |
commit | e55c9e559d877ded4c4f207299044781ae26a945 (patch) | |
tree | 8fbfa772c46020c48a5491ea03dcb7ab65e69429 | |
parent | edf84cca041be956d8a8ac02d4542e9d835e42c9 (diff) | |
parent | b32a47807e7ed2dba86d76fe37d780e345f2b89a (diff) |
Merge branch 'uiredesign' of ../evan into uiredesign
-rw-r--r-- | actions/public.php | 2 | ||||
-rw-r--r-- | lib/action.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actions/public.php b/actions/public.php index e00f8efba..b13678bf0 100644 --- a/actions/public.php +++ b/actions/public.php @@ -31,6 +31,8 @@ if (!defined('LACONICA')) { exit(1); } +require_once INSTALLDIR.'/lib/publicgroupnav.php'; + /** * Action for displaying the public stream * diff --git a/lib/action.php b/lib/action.php index 5f6c600b1..4b9db4652 100644 --- a/lib/action.php +++ b/lib/action.php @@ -278,7 +278,7 @@ class Action extends HTMLOutputter // lawsuit function showNoticeForm() { - $notice_form = new NoticeForm(); + $notice_form = new NoticeForm($this); $notice_form->show(); } |