Ignore:
Timestamp:
03/22/10 16:49:23 (14 years ago)
Author:
pedroerp
Message:

Ticket #609 - Removendo 'require_once's desnecessários.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/workflow/branches/609/inc/class.bo_monitors.inc.php

    r2311 r2323  
    1111 
    1212require_once('class.bo_ajaxinterface.inc.php'); 
    13  
    14 require_once('class.workflow_acl.inc.php'); /* can we remove this? */ 
    15 require_once('class.bo_adminaccess.inc.php'); 
    16 require_once('class.powergraphic.inc.php'); 
    1713 
    1814/** 
     
    13941390 
    13951391                /* get the required configuration */ 
    1396                 $BOEmailAdmin = Factory::getInstance('bo') 
     1392                $BOEmailAdmin = Factory::getInstance('bo'); 
    13971393                $profileList = $BOEmailAdmin->getProfileList(); 
    13981394                $profile = $BOEmailAdmin->getProfile($profileList[0]['profileID']); 
     1395 
     1396                /** 
     1397                 * XXX - XXX 
     1398                 * It's weird.. There are two almost identical PHPMailer classes. 
     1399                 * The class registered in our factory is under 'EGW_INC_ROOT'. 
     1400                 * The class used here has the same name and it's under another 
     1401                 * directory. For now, let's just include it in the old-fashion 
     1402                 * way, but if someone, someday try to use both classes in the 
     1403                 * same access, it could cause us troubles. 
     1404                 */ 
    13991405 
    14001406                /* configure the PHPMailer class to send the e-mails */ 
Note: See TracChangeset for help on using the changeset viewer.