Ignore:
Timestamp:
09/06/10 21:52:15 (21 months ago)
Author:
vain
Message:
  • minor changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/factories/config.factory.php

    r4599 r4614  
    103103    { 
    104104        $handler = self::getHandler($configfile); 
    105         return $handler::readConfig($configfile); 
     105        return $handler->readConfig($configfile); 
    106106    } 
    107107 
     
    135135            { 
    136136                # instantiate and return the specific confighandler with the $configfile to read 
    137                 #return new $class(); 
    138                 return $class::getInstance(); 
     137                #return $class::getInstance(); 
     138                #call_user_func($class.'::getInstance'); 
     139                return new $class(); 
    139140            } 
    140141            else 
Note: See TracChangeset for help on using the changeset viewer.