summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-02-07 11:54:06 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-02-07 11:54:06 +0100
commit01d1a5b936556f3b19786b7407cce11cf3bdb616 (patch)
treebfc7498f1c8f1ac77f89626b118e2ed8c481c2ba /index.php
parent4b679a786af0c35486ff8a32d67aea3a58134fdd (diff)
CLI requests can now be run from any folder, not just when CD'ed next to index.php.
Diffstat (limited to 'index.php')
-rw-r--r--index.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/index.php b/index.php
index 918c80259..74e3ba32a 100644
--- a/index.php
+++ b/index.php
@@ -130,6 +130,13 @@
* Resolve the system path for increased reliability
* ---------------------------------------------------------------
*/
+
+ // Set the current directory correctly for CLI requests
+ if (defined('STDIN'))
+ {
+ chdir(dirname(__FILE__));
+ }
+
if (realpath($system_path) !== FALSE)
{
$system_path = realpath($system_path).'/';