From 689cea3170968e1e488fb6fe84505ca7c9f6a2bf Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Thu, 26 Sep 2013 18:26:03 +0100 Subject: [PATCH 1/2] Typo --- include/page_widgets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/page_widgets.php b/include/page_widgets.php index 23d6d25ba..d70281afc 100644 --- a/include/page_widgets.php +++ b/include/page_widgets.php @@ -5,7 +5,7 @@ function writepages_widget ($who,$which){ return replace_macros(get_markup_template('write_pages.tpl'), array( '$new' => t('New Page'), '$newurl' => "webpages/$who", - '$edit' => t('edit'), + '$edit' => t('Edit'), '$editurl' => "editwebpage/$who/$which" )); } From 26492b3ad486bbcd7e5bb96289a7ade1bd00a186 Mon Sep 17 00:00:00 2001 From: Olaf Conradi Date: Wed, 25 Sep 2013 21:43:21 +0200 Subject: [PATCH 2/2] Add explanation why public comments are disabled. --- include/items.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 4aecf9174..25bcf0253 100755 --- a/include/items.php +++ b/include/items.php @@ -98,6 +98,10 @@ function can_comment_on_post($observer_xchan,$item) { return true; break; case 'public': + # We don't allow public comments yet, until a policy + # for dealing with anonymous comments is in place with + # a means to moderate comments. Until that time, return + # false. return false; break; case 'contacts': @@ -3874,4 +3878,4 @@ function items_fetch($arr,$channel = null,$observer_hash = null,$client_mode = C } return $items; -} \ No newline at end of file +}