Ignore:
Timestamp:
Mar 8, 2010, 10:35:31 PM (14 years ago)
Author:
Eric
Message:

[NBC_UserAdvManager] Pre-2.14.0

  • Improving upgrade process
  • Removing obsolete files
  • Bug 1467 : Pending FCK Editor functions because there is still a problem with special characters transformed to code. They are not correctly displayed in email received and i'ven't found a solution at this time.
  • Bug 1488 fixed : When an admin creates an account, an information email is always sent to created user if this option is enabled.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/trunk/admin/UAM_admin.php

    r5073 r5084  
    7171// +----------------------------------------------------------+
    7272
    73 /* Standby because this may cause too many problems with (;) in text fields */
    74 $toolbar = 'Basic';
     73/* Pending because this may cause problems with special characters in emails */
     74/*$toolbar = 'Basic';
    7575$width = '750px';
    7676$height = '300px';
    7777$areas = array();
    7878array_push( $areas,'UAM_MailInfo_Text','UAM_ConfirmMail_Text','UAM_GhostTracker_ReminderText','UAM_ConfirmMail_ReMail_Txt1','UAM_ConfirmMail_ReMail_Txt2');
    79  
     79
    8080if (function_exists('set_fckeditor_instance'))
     81{
     82  $fcke_config = unserialize($conf['FCKEditor']);
     83  foreach($areas as $area)
     84  {
     85    if (!isset($fcke_config[$area]))
     86    {
     87      $fcke_config[$area] = false;
     88    }
     89  }
     90  $conf['FCKEditor'] = serialize($fcke_config);
     91
    8192  set_fckeditor_instance($areas, $toolbar, $width, $height);
     93}*/
    8294
    8395
Note: See TracChangeset for help on using the changeset viewer.