From c98a532f9ec4c806eda3e0a91ebbf7da6886102e Mon Sep 17 00:00:00 2001
From: "Alan J. Pippin" <ajp@server.pippins.net>
Date: Sun, 17 Feb 2008 21:14:58 -0700
Subject: [PATCH] Undid the change of the include path. It was better the way
 it was.

---
 inc/class.eq.inc.php | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/inc/class.eq.inc.php b/inc/class.eq.inc.php
index b3730dd..a5cc2b4 100644
--- a/inc/class.eq.inc.php
+++ b/inc/class.eq.inc.php
@@ -68,11 +68,10 @@ class eq
  
   function eq()
     {
-      $base_path = $_SERVER['DOCUMENT_ROOT'];
-      if(file_exists("$base_path/eq/setup/eq_config.local")) {
-	include("$base_path/eq/setup/eq_config.local");
+      if(file_exists("setup/eq_config.local")) {
+	include("setup/eq_config.local");
       } else {
-	include("$base_path/eq/setup/eq_config");
+	include("setup/eq_config");
       }
       
       $this->script_path = "$this->application_path"."/bin";
-- 
2.34.1