Damn. There's more
authorchriskl <chriskl>
Wed, 16 Nov 2005 08:01:18 +0000 (08:01 +0000)
committerchriskl <chriskl>
Wed, 16 Nov 2005 08:01:18 +0000 (08:01 +0000)
classes/Misc.php
classes/plugins/Slony.php

index b266993ef46dec4d5179cc2986cc1918e6f8be64..83d6407499a7608772cdc01f0a236cfcd665b74d 100644 (file)
@@ -2,7 +2,7 @@
        /**
         * Class to hold various commonly used functions
         *
-        * $Id: Misc.php,v 1.114 2005/11/16 07:57:34 chriskl Exp $
+        * $Id: Misc.php,v 1.115 2005/11/16 08:01:18 chriskl Exp $
         */
         
        class Misc {
                }
                
                function adjustTabsForTree(&$tabs) {
-                       include_once('classes/ArrayRecordSet.php');
+                       include_once('./classes/ArrayRecordSet.php');
                        
                        foreach ($tabs as $i => $tab) {
                                if ((isset($tab['hide']) && $tab['hide'] === true) || (isset($tab['tree']) && $tab['tree'] === false)) {
index 020cfa363893523357afa4664fc5d0b740e90215..f8666b815dad62a885694dcf19fc72a7b929bfe3 100755 (executable)
@@ -3,7 +3,7 @@
 /**
  * A class that implements the Slony 1.0.x support plugin
  *
- * $Id: Slony.php,v 1.8 2005/09/08 05:03:37 chriskl Exp $
+ * $Id: Slony.php,v 1.9 2005/11/16 08:01:18 chriskl Exp $
  */
 
 include_once('./classes/plugins/Plugin.php');
@@ -80,7 +80,7 @@ class Slony extends Plugin {
         * Gets the clusters in this database
         */
        function getClusters() {
-               include_once('classes/ArrayRecordSet.php');
+               include_once('./classes/ArrayRecordSet.php');
 
                if ($this->isEnabled()) {
                        $clusters = array(array('cluster' => $this->slony_cluster, 'comment' => $this->slony_comment));