From 2b9b6bfab0c5d99e7571d69bc94a6ea69f39932d Mon Sep 17 00:00:00 2001
From: till <till@php.net>
Date: Sun, 03 Feb 2008 09:30:02 -0500
Subject: [PATCH] * fixed include_path
---
check.php | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/check.php b/check.php
index 8e0558e..a21431a 100644
--- a/check.php
+++ b/check.php
@@ -38,6 +38,10 @@
* @todo HTML/CSS to make it pretty.
*/
+$include_path = dirname(__FILE__) . '/program/lib/';
+$include_path .= PATH_SEPARATOR . get_include_path();
+set_include_path($include_path);
+
$writable_dirs = array('logs/', 'temp/');
$create_files = array('config/db.inc.php', 'config/main.inc.php');
--
Gitblit v1.9.1