Ignore:
Timestamp:
Mar 8, 2010, 11:11:51 PM (14 years ago)
Author:
Eric
Message:

[NBC_UserAdvManager] Pre-2.14.0 merged from trunk to branch 2.14

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/branches/2.14/include/functions.inc.php

    r5065 r5087  
    9898    }
    9999  }
     100
     101/* ******************************************************** */
     102/* **** Pending code since to find how to make it work **** */
     103/* ******************************************************** */
     104// Testing if FCK Editor is used. Then decoding htmlchars to avoid problems with pwg_mail()
     105/*$areas = array();
     106array_push( $areas,'UAM_MailInfo_Text','UAM_ConfirmMail_Text');
     107
     108if (function_exists('set_fckeditor_instance'))
     109{
     110  $fcke_config = unserialize($conf['FCKEditor']);
     111  foreach($areas as $area)
     112  {
     113    if (isset($fcke_config['UAM_MailInfo_Text']) and $fcke_config['UAM_MailInfo_Text'] = true)
     114    {
     115      $infos1_perso = html_entity_decode($infos1_perso,ENT_QUOTES,UTF-8);
     116    }
     117   
     118    if (isset($fcke_config['UAM_ConfirmMail_Text']) and $fcke_config['UAM_ConfirmMail_Text'] = true)
     119    {
     120      $infos2_perso = html_entity_decode($infos2_perso,ENT_QUOTES,UTF-8);
     121    }
     122  }
     123}*/
     124
    100125
    101126/* Sending the email with subject and contents */
Note: See TracChangeset for help on using the changeset viewer.