aboutsummaryrefslogtreecommitdiffstats
path: root/mod/connedit.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-07-26 21:24:33 +0200
committerMario Vavti <mario@mariovavti.com>2015-07-26 21:24:33 +0200
commit54336ba43b8f944df2189fdbd949b96a4651b08e (patch)
tree1c8c9c2ec62a00354474dc51df874ffb6e04bed7 /mod/connedit.php
parentf6142d18c43a77473dd4e2e3ea6c25154487ff2b (diff)
downloadvolse-hubzilla-54336ba43b8f944df2189fdbd949b96a4651b08e.tar.gz
volse-hubzilla-54336ba43b8f944df2189fdbd949b96a4651b08e.tar.bz2
volse-hubzilla-54336ba43b8f944df2189fdbd949b96a4651b08e.zip
comment out some popover infos - we provide enough visual feedback now
Diffstat (limited to 'mod/connedit.php')
-rw-r--r--mod/connedit.php30
1 files changed, 15 insertions, 15 deletions
diff --git a/mod/connedit.php b/mod/connedit.php
index b2f23ea7f..bc8ae5e2e 100644
--- a/mod/connedit.php
+++ b/mod/connedit.php
@@ -397,9 +397,9 @@ function connedit_content(&$a) {
if($cmd === 'block') {
if(abook_toggle_flag($orig_record[0],ABOOK_FLAG_BLOCKED)) {
- info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_BLOCKED)
- ? t('Channel has been unblocked')
- : t('Channel has been blocked')) . EOL );
+ // info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_BLOCKED)
+ // ? t('Channel has been unblocked')
+ // : t('Channel has been blocked')) . EOL );
connedit_clone($a);
}
else
@@ -409,9 +409,9 @@ function connedit_content(&$a) {
if($cmd === 'ignore') {
if(abook_toggle_flag($orig_record[0],ABOOK_FLAG_IGNORED)) {
- info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_IGNORED)
- ? t('Channel has been unignored')
- : t('Channel has been ignored')) . EOL );
+ // info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_IGNORED)
+ // ? t('Channel has been unignored')
+ // : t('Channel has been ignored')) . EOL );
connedit_clone($a);
}
else
@@ -421,9 +421,9 @@ function connedit_content(&$a) {
if($cmd === 'archive') {
if(abook_toggle_flag($orig_record[0],ABOOK_FLAG_ARCHIVED)) {
- info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_ARCHIVED)
- ? t('Channel has been unarchived')
- : t('Channel has been archived')) . EOL );
+ // info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_ARCHIVED)
+ // ? t('Channel has been unarchived')
+ // : t('Channel has been archived')) . EOL );
connedit_clone($a);
}
else
@@ -433,9 +433,9 @@ function connedit_content(&$a) {
if($cmd === 'hide') {
if(abook_toggle_flag($orig_record[0],ABOOK_FLAG_HIDDEN)) {
- info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_HIDDEN)
- ? t('Channel has been unhidden')
- : t('Channel has been hidden')) . EOL );
+ // info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_HIDDEN)
+ // ? t('Channel has been unhidden')
+ // : t('Channel has been hidden')) . EOL );
connedit_clone($a);
}
else
@@ -449,9 +449,9 @@ function connedit_content(&$a) {
if($cmd === 'approve') {
if($orig_record[0]['abook_flags'] & ABOOK_FLAG_PENDING) {
if(abook_toggle_flag($orig_record[0],ABOOK_FLAG_PENDING)) {
- info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_PENDING)
- ? t('Channel has been approved')
- : t('Channel has been unapproved')) . EOL );
+ // info((($orig_record[0]['abook_flags'] & ABOOK_FLAG_PENDING)
+ // ? t('Channel has been approved')
+ // : t('Channel has been unapproved')) . EOL );
connedit_clone($a);
}
else