Changeset 13934

Show
Ignore:
Timestamp:
12/18/07 01:43:07 (9 months ago)
Author:
flack
Message:

forgot one file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/midcom.helper.filesync/importer.php

    r13894 r13934  
    2121    { 
    2222         $this->_component = 'midcom.helper.filesync'; 
     23         $this->config =& $this->_config; 
    2324         parent::midcom_baseclasses_components_purecode(); 
    2425    } 
    25      
     26 
    2627    /** 
    2728     * This is a static factory method which lets you dynamically create importer instances. 
     
    3940    { 
    4041        $filename = MIDCOM_ROOT . "/midcom/helper/filesync/importer/{$type}.php"; 
    41          
     42 
    4243        if (!file_exists($filename)) 
    4344        { 
     
    4748        require_once($filename); 
    4849 
    49         $classname = "midcom_helper_filesync_importer_{$type}";         
     50        $classname = "midcom_helper_filesync_importer_{$type}"; 
    5051        if (!class_exists($classname)) 
    5152        { 
     
    5354            // This will exit. 
    5455        } 
    55          
     56 
    5657        /** 
    5758         * Php 4.4.1 does not allow you to return a reference to an expression.