From af54981cf62b773dc7fdcdd3d6cdd991cd8d774b Mon Sep 17 00:00:00 2001 From: Bob Le Bricodeur <Mr.Bricodage@gmail.com> Date: Sat, 15 Nov 2014 00:59:33 +0100 Subject: [PATCH] correction warning pour acces $config[use_smtp] depuis adminstuds.php --- adminstuds.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/adminstuds.php b/adminstuds.php index 0ea9a4ca..73693167 100644 --- a/adminstuds.php +++ b/adminstuds.php @@ -79,11 +79,13 @@ $dsondage=$sondage->FetchObject(false); // Send email (only once during the session) to alert admin of the change he made. ==> two modifications (comment, title, description, ...) on differents polls in the same session will generate only one mail. $email_admin = $dsondage->mail_admin; $poll_title = $dsondage->titre; +$smtp_allowed = $config['use_smtp']; function send_mail_admin() { global $email_admin; global $poll_title; global $numsondageadmin; - if($config['use_smtp']==true){ + global $smtp_allowed; + if($smtp_allowed==true){ if(!isset($_SESSION["mail_admin_sent"])) { Utils::sendEmail( $email_admin, _("[ADMINISTRATOR] New settings for your poll") . ' ' . stripslashes( $poll_title ), -- GitLab