use info() for successfull dfrn confirmation instead of notice()

This commit is contained in:
Fabio Comuni 2012-02-20 20:39:19 +01:00
parent edac27c791
commit dd09c2d125
1 changed files with 1 additions and 1 deletions

2
mod/dfrn_confirm.php Executable file → Normal file
View File

@ -252,7 +252,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$message = unxmlify($xml->message); // human readable text of what may have gone wrong.
switch($status) {
case 0:
notice( t("Confirmation completed successfully.") . EOL);
info( t("Confirmation completed successfully.") . EOL);
if(strlen($message))
notice( t('Remote site reported: ') . $message . EOL);
break;