Skip to content

Commit

Permalink
Ralph feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
RWOverdijk committed Aug 10, 2012
1 parent d76ef2c commit b88f507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/pluginmap_generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
$libPath = getenv('LIB_PATH') ? getenv('LIB_PATH') : __DIR__ . '/../library';
if (!is_dir($libPath)) {
// Try to load StandardAutoloader from include_path
if (false === include ('Zend/Loader/StandardAutoloader.php')) {
if (false === (include 'Zend/Loader/StandardAutoloader.php')) {
echo "Unable to locate autoloader via include_path; aborting" . PHP_EOL;
exit(2);
}
} else {
// Try to load StandardAutoloader from library
if (false === include ($libPath . '/Zend/Loader/StandardAutoloader.php')) {
if (false === (include $libPath . '/Zend/Loader/StandardAutoloader.php')) {
echo "Unable to locate autoloader via library; aborting" . PHP_EOL;
exit(2);
}
Expand Down

0 comments on commit b88f507

Please sign in to comment.