Browse Source

chdir if the request is not from the web.

Taylor Otwell 13 years ago
parent
commit
9f1bd0ca3f
1 changed files with 8 additions and 0 deletions
  1. 8 0
      paths.php

+ 8 - 0
paths.php

@@ -13,6 +13,14 @@
 // --------------------------------------------------------------
 if ( ! isset($web)) $web = false;
 
+// --------------------------------------------------------------
+// Change to the current directory if not from the web.
+// --------------------------------------------------------------
+if ( ! $web)
+{
+	chdir(__DIR__);
+}
+
 // --------------------------------------------------------------
 // Define the directory separator for the environment.
 // --------------------------------------------------------------