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 <?php
require_once("../inc/always.php"); require_once("../htdocs/always.php");
require_once("RRule.php"); require_once("RRule.php");
header("Content-type: text/plain"); header("Content-type: text/plain");

View File

@ -2,13 +2,13 @@
<?php <?php
if ( @file_exists('../../awl/inc/AWLUtilities.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') ) { else if ( @file_exists('../awl/inc/AWLUtilities.php') ) {
set_include_path('inc:../awl/inc:.'); set_include_path('inc:htdocs:../awl/inc:.');
} }
else { else {
set_include_path('../inc:/usr/share/awl/inc'); set_include_path('../inc:../htdocs:/usr/share/awl/inc');
} }
include('always.php'); include('always.php');
require_once('AwlQuery.php'); require_once('AwlQuery.php');

View File

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