aboutsummaryrefslogtreecommitdiffstats
path: root/mod/contacts.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-23 18:17:02 -0700
committerFriendika <info@friendika.com>2011-05-23 18:17:02 -0700
commit78b2db3a9840f551c951bf0a58a54cce08133bcf (patch)
tree95ed3bd4e52218640d0c13f9691da5a051be5cd8 /mod/contacts.php
parent3e6180183bdc01edfa01dc4b966daa4081c29604 (diff)
parentdd32a2366c52f7cd234a562c2d9ab7627f162305 (diff)
downloadvolse-hubzilla-78b2db3a9840f551c951bf0a58a54cce08133bcf.tar.gz
volse-hubzilla-78b2db3a9840f551c951bf0a58a54cce08133bcf.tar.bz2
volse-hubzilla-78b2db3a9840f551c951bf0a58a54cce08133bcf.zip
Merge branch 'fabrixxm-master'
Conflicts: boot.php
Diffstat (limited to 'mod/contacts.php')
-rw-r--r--mod/contacts.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/contacts.php b/mod/contacts.php
index 0ad0d217f..2ed7f198e 100644
--- a/mod/contacts.php
+++ b/mod/contacts.php
@@ -85,7 +85,7 @@ logger('contact_edit ' . print_r($_POST,true));
intval(local_user())
);
if($r)
- notice( t('Contact updated.') . EOL);
+ info( t('Contact updated.') . EOL);
else
notice( t('Failed to update contact record.') . EOL);
return;
@@ -143,7 +143,7 @@ function contacts_content(&$a) {
);
if($r) {
//notice( t('Contact has been ') . (($blocked) ? t('blocked') : t('unblocked')) . EOL );
- notice( (($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')) . EOL );
+ info( (($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')) . EOL );
}
goaway($a->get_baseurl() . '/contacts/' . $contact_id);
return; // NOTREACHED
@@ -157,7 +157,7 @@ function contacts_content(&$a) {
intval(local_user())
);
if($r) {
- notice( (($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')) . EOL );
+ info( (($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')) . EOL );
}
goaway($a->get_baseurl() . '/contacts/' . $contact_id);
return; // NOTREACHED
@@ -197,7 +197,7 @@ function contacts_content(&$a) {
contact_remove($contact_id);
- notice( t('Contact has been removed.') . EOL );
+ info( t('Contact has been removed.') . EOL );
goaway($a->get_baseurl() . '/contacts');
return; // NOTREACHED
}
@@ -402,4 +402,4 @@ function contacts_content(&$a) {
}
$o .= paginate($a);
return $o;
-} \ No newline at end of file
+}