mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 00:11:53 +00:00
Fix APP_INCLUDE typo
This commit is contained in:
parent
ae89f29057
commit
5dc24ebbe4
@ -5,6 +5,7 @@ PHP.
|
||||
and after every single run.
|
||||
* Ability to specify a cluster/multiple redis servers and consistent hash
|
||||
between them (Thanks dceballos)
|
||||
* Fix `APP_INCLUDE` environment variable not loading correctly.
|
||||
|
||||
## 1.0 (2010-04-18) ##
|
||||
|
||||
|
@ -12,7 +12,7 @@ if(!empty($_ENV['APP_INCLUDE'])) {
|
||||
die('APP_INCLUDE ('.$_ENV['APP_INCLUDE'].") does not exist.\n");
|
||||
}
|
||||
|
||||
require_once APP_INCLUDE;
|
||||
require_once $_ENV['APP_INCLUDE'];
|
||||
}
|
||||
|
||||
require 'lib/Resque.php';
|
||||
|
Loading…
Reference in New Issue
Block a user