Assembla home | Assembla project page
 
Show
Ignore:
Timestamp:
04/15/08 01:14:57 (7 months ago)
Author:
Slynderdale
Message:

Various bug fixes and enhancements. Removed the call_user_func calls in Streams.php and Base.php to directly calling the method for a faster response. Fixed Willsee in Seen and fixed the caching in PHP

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Phergie/Plugin/Abstract/Base.php

    r232 r245  
    124124        } 
    125125 
    126         return call_user_func_array(array($this, 'onPhpError'), array($errno, $errstr, $errfile, $errline)); 
     126        return $this->onPhpError($errno, $errstr, $errfile, $errline); 
    127127    } 
    128128