diff options
author | Eudyptula <eitan@mosenkis.net> | 2009-06-17 12:15:12 -0400 |
---|---|---|
committer | Eudyptula <eitan@mosenkis.net> | 2009-06-17 12:15:12 -0400 |
commit | 10f33476498711536961558c1876acc6d10aaf1f (patch) | |
tree | 569e8b4033d04a36b0fb09e0366e0c4f8f4e1cf0 /backend | |
parent | Updated depend for necessary php extensions, apache mod_rewrite (diff) | |
download | ingenue-10f33476498711536961558c1876acc6d10aaf1f.tar.gz ingenue-10f33476498711536961558c1876acc6d10aaf1f.tar.bz2 ingenue-10f33476498711536961558c1876acc6d10aaf1f.zip |
Moved including shared/include/paths.php into shared/include/includes.php
Diffstat (limited to 'backend')
-rwxr-xr-x | backend/backend.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backend/backend.php b/backend/backend.php index 84af0db..dd7be37 100755 --- a/backend/backend.php +++ b/backend/backend.php @@ -1,7 +1,6 @@ #!/usr/bin/php <?php -require_once(dirname(__FILE__).'/../shared/include/paths.php'); // USE __DIR__ once 5.3.0 is out -require_once(SHARED.'/include/includes.php'); +require_once(dirname(__FILE__).'/../shared/include/includes.php'); // USE __DIR__ once 5.3.0 is out $opts=getopt('f'); if (isset($opts['f'])) { $f=pcntl_fork(); |