Fix include path for new always.php location.

This commit is contained in:
Andrew McMillan 2010-03-24 12:55:08 +13:00
parent 9b3fb58b9f
commit 92e106653b
3 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
<?php
require_once("../inc/always.php");
require_once("../htdocs/always.php");
require_once("RRule.php");
header("Content-type: text/plain");

View File

@ -2,13 +2,13 @@
<?php
if ( @file_exists('../../awl/inc/AWLUtilities.php') ) {
set_include_path('../inc:../../awl/inc');
set_include_path('../inc:../htdocs:../../awl/inc');
}
else if ( @file_exists('../awl/inc/AWLUtilities.php') ) {
set_include_path('inc:../awl/inc:.');
set_include_path('inc:htdocs:../awl/inc:.');
}
else {
set_include_path('../inc:/usr/share/awl/inc');
set_include_path('../inc:../htdocs:/usr/share/awl/inc');
}
include('always.php');
require_once('AwlQuery.php');
@ -373,4 +373,4 @@ $cache_file = fopen($sync_cache_filename, 'w');
fwrite( $cache_file, serialize($newcache) );
fclose($cache_file);
print_r($newcache);
print_r($newcache);

View File

@ -2,10 +2,10 @@
<?php
if ( @file_exists('../../awl/inc/AWLUtilities.php') ) {
set_include_path('../inc:../../awl/inc');
set_include_path('../inc:../htdocs:../../awl/inc');
}
else {
set_include_path('../inc:/usr/share/awl/inc');
set_include_path('../inc:../htdocs:/usr/share/awl/inc');
}
require_once("always.php");
$c->dbg = array();