From 5f89b8865056baea5e4f89aadf28541dbd0993ee Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 23 Jan 2009 09:45:48 +0100 Subject: [PATCH 1/3] showstream is readonly --- actions/showstream.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actions/showstream.php b/actions/showstream.php index 2fd56ad2ea..c1ef8ba52c 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -60,6 +60,11 @@ class ShowstreamAction extends Action var $page = null; var $profile = null; + function isReadOnly() + { + return true; + } + function title() { if ($this->page == 1) { From cdd2032540b0433c9a483a480bd0e6f8a655dddc Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 23 Jan 2009 09:49:38 +0100 Subject: [PATCH 2/3] groups are readonly --- actions/groups.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actions/groups.php b/actions/groups.php index 261f9b3aae..39dc2232bc 100644 --- a/actions/groups.php +++ b/actions/groups.php @@ -51,6 +51,11 @@ class GroupsAction extends Action var $page = null; var $profile = null; + function isReadOnly() + { + return true; + } + function title() { if ($this->page == 1) { From daf32e43cd100a6097bc5eaa55f5bf396d374dc5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 23 Jan 2009 09:51:10 +0100 Subject: [PATCH 3/3] usergroups is read only --- actions/usergroups.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actions/usergroups.php b/actions/usergroups.php index 20f2e5a758..748585e1d0 100644 --- a/actions/usergroups.php +++ b/actions/usergroups.php @@ -52,6 +52,11 @@ class UsergroupsAction extends Action var $page = null; var $profile = null; + function isReadOnly() + { + return true; + } + function title() { if ($this->page == 1) {