From 1a5564ded506b1c859f0c15ef22f5f6d79782eb7 Mon Sep 17 00:00:00 2001 From: Andrew Shults Date: Wed, 8 Jun 2011 20:37:54 -0400 Subject: [PATCH] Switch to using require_once since it seems there are some conflicts with the autoloader --- resque.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resque.php b/resque.php index d020622..d85a70e 100644 --- a/resque.php +++ b/resque.php @@ -13,8 +13,8 @@ if($APP_INCLUDE) { require_once $APP_INCLUDE; } -require 'lib/Resque.php'; -require 'lib/Resque/Worker.php'; +require_once 'lib/Resque.php'; +require_once 'lib/Resque/Worker.php'; $REDIS_BACKEND = getenv('REDIS_BACKEND'); if(!empty($REDIS_BACKEND)) {