From: jollytoad Date: Tue, 29 Mar 2005 07:57:45 +0000 (+0000) Subject: Fixed isDumpEnabled. X-Git-Url: http://git.postgresql.org/gitweb/static/main.js?a=commitdiff_plain;h=2e1e588c420ecab70b87d7fe7df1a421b74b90a5;p=phppgadmin.git Fixed isDumpEnabled. --- 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']); } /**