Changeset 12902

Show
Ignore:
Timestamp:
10/19/07 16:02:30 (1 year ago)
Author:
adrenalin
Message:

Added midcom.helper.datamanager2 to load at startup, otherwise editing of folders that do not load it would be impossible

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.admin.folder/documentation/CHANGES

    r12036 r12902  
    66  which might even break existing functionality. 
    77- All items marked with "+" represent completly new features. 
     8 
     92007-10-19 adrenalin 
     10  - Added midcom.helper.datamanager2 to load at startup, otherwise editing of folders that 
     11    do not load it would be impossible 
    812 
    9132007-09-06 bergie 
  • trunk/midcom/midcom.admin.folder/handler/edit.php

    r12029 r12902  
    5858        // Load the configuration 
    5959        $_MIDCOM->componentloader->load('midcom.admin.folder'); 
     60         
     61        if (!class_exists('midcom_helper_datamanager2')) 
     62        { 
     63            $_MIDCOM->componentloader->load('midcom.helper.datamanager2'); 
     64        } 
     65         
    6066        $this->_config =& $GLOBALS['midcom_component_data']['midcom.admin.folder']['config']; 
    6167    } 
  • trunk/midcom/midcom.admin.folder/midcom/interfaces.php

    r12029 r12902  
    2525        ( 
    2626            'midcom.admin.help', 
     27            'midcom.helper.datamanager2', 
    2728        ); 
    2829    }