Ignore:
Timestamp:
Oct 16, 2009, 10:26:40 AM (15 years ago)
Author:
cljosse
Message:

[mail_supervisor] modif bug in fonctions.php

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Mail_supervisor/include/fonctions.php

    r4045 r4049  
    2929if (!defined('MAIL_SUPERV_PATH')) define('MAIL_SUPERV_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
    3030
    31 load_language('plugin.lang', MAIL_SUPERV_PATH);
     31
    3232include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
    3333include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
    3434
    3535include_once (MAIL_SUPERV_PATH.'include/function_test_send.php');
     36
     37load_language('plugin.lang', MAIL_SUPERV_PATH);
    3638
    3739global $period_search,$period_match ;
     
    7981                       
    8082                        `message`          = "'.$mails_données['message'].'",
    81                         `message_test`          = "'.$mails_données['message_test'].'",
     83                        `message_test`     = "'.$mails_données['message_test'].'",
    8284                        `header_text`      = "'.$mails_données['header_text'].'"
    8385                WHERE `id` =1 LIMIT 1 ';
     
    177179         return $data;
    178180}
     181//===============================================
     182function not_is_empty($variable)
     183{
     184global $args;
     185
     186 echo $variable." ".count($args[$variable]) ;
     187 if (isset($args[$variable]))
     188 
     189  {
     190 
     191     if ( count($args[$variable]) > 0) ;
     192        {
     193 echo count($args[$variable]) ;
     194        $args[$variable]=array_filter($args[$variable]);
     195 echo count($args[$variable]) ;
     196 
     197         }
     198  }
     199}
     200       
    179201
    180202//=================================================================================
     
    182204        {
    183205        global $mails_options,$conf_mail,$mailto,$args;
    184         $headers = preg_replace('/.*'.$Carbonne.'(.*).\n/i', $Carbonne.' : '.get_strict_email_list(implode(' , ', $args[$Carbonne]))."\n", $headers);
    185 
    186         return $headers;
     206        $headers = preg_replace('/.*'.$Carbonne.'(.*).\n/i', $Carbonne.' : '.get_strict_email_list()."\n", $headers);
     207return $headers;
    187208
    188209               
     
    340361        '.time().',
    341362        2000,
    342         "1 week",
     363        "1 "'.l10n('Week').'",
    343364       
    344365        0,
    345366        '.time().',
    346367        10,
    347         "2 day",
     368        "2 "'.l10n('Day').'",
    348369       
    349370        false,
    350371        '.time().',
    351         "2 day",
     372        "2 "'.l10n('Day').'",
    352373       
    353374        "Init.",
     375        "'.l10n('supervisor').'",
    354376         "'.l10n('hello').'"
    355377         )
Note: See TracChangeset for help on using the changeset viewer.