Skip to content

Commit

Permalink
Switch to using require_once since it seems there are some conflicts …
Browse files Browse the repository at this point in the history
…with the autoloader
  • Loading branch information
andrewjshults committed Jun 9, 2011
1 parent bf29c5e commit 1a5564d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resque.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
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)) {
Expand Down

0 comments on commit 1a5564d

Please sign in to comment.