/**
* 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)) {
/**
* 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');
* 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));