aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorzottel <github@zottel.net>2013-12-05 13:44:31 +0100
committerzottel <github@zottel.net>2013-12-05 13:44:31 +0100
commit0e9df93a69b79cf50d7fe882ef0ca3f87b8fdccb (patch)
treec27e8ea286f5c569f5c1a8a91767b8adc4c9c92c /mod
parentcc1e906825dd30f74d0a30190a7dd2a26d6b1642 (diff)
downloadvolse-hubzilla-0e9df93a69b79cf50d7fe882ef0ca3f87b8fdccb.tar.gz
volse-hubzilla-0e9df93a69b79cf50d7fe882ef0ca3f87b8fdccb.tar.bz2
volse-hubzilla-0e9df93a69b79cf50d7fe882ef0ca3f87b8fdccb.zip
Make it possible to change visibility without changing name.
Diffstat (limited to 'mod')
-rw-r--r--mod/group.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/group.php b/mod/group.php
index 46386be0d..5a34ab6fb 100644
--- a/mod/group.php
+++ b/mod/group.php
@@ -49,7 +49,7 @@ function group_post(&$a) {
$groupname = notags(trim($_POST['groupname']));
$public = intval($_POST['public']);
- if((strlen($groupname)) && ($groupname != $group['name'])) {
+ if((strlen($groupname)) && (($groupname != $group['name']) || ($public != $group['visible']))) {
$r = q("UPDATE `group` SET `name` = '%s', visible = %d WHERE `uid` = %d AND `id` = %d LIMIT 1",
dbesc($groupname),
intval($public),
@@ -57,7 +57,7 @@ function group_post(&$a) {
intval($group['id'])
);
if($r)
- info( t('Collection name changed.') . EOL );
+ info( t('Collection updated.') . EOL );
}
goaway(z_root() . '/group/' . argv(1) . '/' . argv(2));