aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.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/settings.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/settings.php')
-rw-r--r--mod/settings.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/settings.php b/mod/settings.php
index cba6958b3..055042916 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -51,7 +51,7 @@ function settings_post(&$a) {
intval(local_user())
);
if($r)
- notice( t('Password changed.') . EOL);
+ info( t('Password changed.') . EOL);
else
notice( t('Password update failed. Please try again.') . EOL);
}
@@ -203,7 +203,7 @@ function settings_post(&$a) {
intval(local_user())
);
if($r)
- notice( t('Settings updated.') . EOL);
+ info( t('Settings updated.') . EOL);
$r = q("UPDATE `profile`
SET `publish` = %d, `net-publish` = %d
@@ -374,7 +374,7 @@ function settings_content(&$a) {
? true : false);
if($invisible)
- notice( t('Profile is <strong>not published</strong>.') . EOL );
+ info( t('Profile is <strong>not published</strong>.') . EOL );
$theme_selector = '<select name="theme" id="theme-select" >';
@@ -485,7 +485,7 @@ function settings_content(&$a) {
'$imap_replyto' => $mail_replyto,
'$lbl_imap7' => t('Send public posts to all email contacts:'),
'$pubmail_checked' => (($mail_pubmail) ? ' checked="checked" ' : ''),
- '$mail_disabled' => (($mail_disabled) ? '<div class="error-message">' . t('Email access is disabled on this site.') . '</div>' : ''),
+ '$mail_disabled' => (($mail_disabled) ? '<div class="info-message">' . t('Email access is disabled on this site.') . '</div>' : ''),
'$imap_disabled' => $imap_disabled
));