mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 13:42:22 +00:00
Fix APP_INCLUDE typo
This commit is contained in:
parent
ae89f29057
commit
5dc24ebbe4
2 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue