diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-05-23 11:39:57 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-05-23 11:39:57 +0200 |
commit | e1107b55c6715d131ca808890ce51c6301e56ccc (patch) | |
tree | fe082a84a1b20b68141e3b1ffdac697051ae73b6 /addon/statusnet | |
parent | 3ea145fae7defaf959b04797afc8482bd0190352 (diff) | |
download | volse-hubzilla-e1107b55c6715d131ca808890ce51c6301e56ccc.tar.gz volse-hubzilla-e1107b55c6715d131ca808890ce51c6301e56ccc.tar.bz2 volse-hubzilla-e1107b55c6715d131ca808890ce51c6301e56ccc.zip |
add info() function. Works like notice() but show messages in a div with class info-message.
update code to use info() instead of notice() when appropriate (non-error message)
add info-message class style in themes
Diffstat (limited to 'addon/statusnet')
-rw-r--r-- | addon/statusnet/statusnet.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/statusnet/statusnet.php b/addon/statusnet/statusnet.php index 25aad028d..bd40f78d8 100644 --- a/addon/statusnet/statusnet.php +++ b/addon/statusnet/statusnet.php @@ -169,7 +169,7 @@ function statusnet_settings_post ($a,$post) { // to post a tweet for every new __public__ posting to the wall set_pconfig(local_user(),'statusnet','post',intval($_POST['statusnet-enable'])); set_pconfig(local_user(),'statusnet','post_by_default',intval($_POST['statusnet-default'])); - notice( t('StatusNet settings updated.') . EOL); + info( t('StatusNet settings updated.') . EOL); }}}} } function statusnet_settings(&$a,&$s) { |