correction warning pour acces $config[use_smtp] depuis adminstuds.php

This commit is contained in:
Bob Le Bricodeur 2014-11-15 00:59:33 +01:00
parent 5d981cb717
commit af54981cf6

View File

@ -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 ),