From c52bcc8af77acc39a4d95ff5e91256a3fb16bc61 Mon Sep 17 00:00:00 2001 From: humancopy Date: Wed, 2 Nov 2011 11:59:33 +0100 Subject: [PATCH] Re-enable autoload for class_exists in Job.php --- lib/Resque/Job.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Resque/Job.php b/lib/Resque/Job.php index 4667b40..ee4aaba 100644 --- a/lib/Resque/Job.php +++ b/lib/Resque/Job.php @@ -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'] . '.' );