Re-enable autoload for class_exists in Job.php

This commit is contained in:
humancopy 2011-11-02 11:59:33 +01:00
parent 599295ef9c
commit c52bcc8af7

View File

@ -142,7 +142,7 @@ class Resque_Job
return $this->instance;
}
if(!class_exists($this->payload['class'], false)) {
if(!class_exists($this->payload['class'])) {
throw new Resque_Exception(
'Could not find job class ' . $this->payload['class'] . '.'
);