Changeset 1024

Show
Ignore:
Timestamp:
11/10/07 23:24:50 (1 year ago)
Author:
mikey
Message:

prevent autoload() from being called

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/events/stubCallbackListener.php

    r141 r1024  
    8282            $this->class    = get_class($instance); 
    8383        } else { 
    84             if (class_exists($instance) == false) { 
     84            if (class_exists($instance, false) === false) { 
    8585                throw new stubCallbackException('Class ' . $instance . ' does not exist.'); 
    8686            }