summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjollytoad2005-03-29 07:57:45 +0000
committerjollytoad2005-03-29 07:57:45 +0000
commit2e1e588c420ecab70b87d7fe7df1a421b74b90a5 (patch)
tree2ebc9e8d8543ebe09127379c5174fd22127c8bd0
parent4cb0e363d9434ff1555b78f413297e943a5f229d (diff)
Fixed isDumpEnabled.
-rw-r--r--classes/Misc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/Misc.php b/classes/Misc.php
index 307243c9..725d191f 100644
--- a/classes/Misc.php
+++ b/classes/Misc.php
@@ -2,7 +2,7 @@
/**
* Class to hold various commonly used functions
*
- * $Id: Misc.php,v 1.98.2.12 2005/03/22 09:29:34 jollytoad Exp $
+ * $Id: Misc.php,v 1.98.2.13 2005/03/29 07:57:45 jollytoad Exp $
*/
class Misc {
@@ -22,7 +22,7 @@
*/
function isDumpEnabled($all = false) {
$info = $this->getServerInfo();
- return !empty($info[$all ? 'pg_dumpall_path' : 'pg_dump']);
+ return !empty($info[$all ? 'pg_dumpall_path' : 'pg_dump_path']);
}
/**