From f147c87f82ba6e1cd0568da4c8d1a874977f9df1 Mon Sep 17 00:00:00 2001 From: secretr Date: Fri, 25 Sep 2009 20:16:18 +0000 Subject: [PATCH] pref 'backup created' message moved to DEBUG stack, preparing for more message control... --- e107_handlers/pref_class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e107_handlers/pref_class.php b/e107_handlers/pref_class.php index 488f62700..51fb69015 100644 --- a/e107_handlers/pref_class.php +++ b/e107_handlers/pref_class.php @@ -9,8 +9,8 @@ * e107 Preference Handler * * $Source: /cvs_backup/e107_0.8/e107_handlers/pref_class.php,v $ - * $Revision: 1.21 $ - * $Date: 2009-09-08 14:48:44 $ + * $Revision: 1.22 $ + * $Date: 2009-09-25 20:16:18 $ * $Author: secretr $ */ @@ -532,7 +532,7 @@ class e_pref extends e_model } if(e107::getDb()->db_Select_gen("REPLACE INTO `#core` (e107_name,e107_value) values ('".$this->prefid."_Backup', '".addslashes($dbdata)."') ")) { - $emessage->add('Backup successfully created.', E_MESSAGE_SUCCESS, $session_messages); + $emessage->add('Backup of '.$this->alias.' ('.$this->prefid.') successfully created.', E_MESSAGE_DEBUG, $session_messages); ecache::clear_sys('Config_'.$this->alias.'_backup'); } }