Changeset 595

Show
Ignore:
Timestamp:
04/22/07 03:11:17 (2 years ago)
Author:
mikey
Message:

use call_user_func_array() instead of deprecated call_user_method_array()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfFacade.php

    r580 r595  
    4343    { 
    4444        try { 
    45             return call_user_method_array($method, $this->realFacade, $arguments); 
     45            return call_user_func_array(array($this->realFacade, $method), $arguments); 
    4646        } catch (Exception $e) { 
    47             throw new stubXJConfException($e->getMessage, $e); 
     47            throw new stubXJConfException($e->getMessage(), $e); 
    4848        } 
    4949    }