From 9296f669774abd5a55a776fd6606f2108f4e8324 Mon Sep 17 00:00:00 2001 From: Richard Neese Date: Thu, 23 Oct 2014 16:59:48 +0000 Subject: [PATCH] fixing upgrade for pkgs not to display svn --- core/upgrade/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/upgrade/index.php b/core/upgrade/index.php index 87695639dc..03ceb7c7c6 100644 --- a/core/upgrade/index.php +++ b/core/upgrade/index.php @@ -55,7 +55,7 @@ if (sizeof($_POST) > 0) { $do = $_POST['do']; // run svn update - if ($do["svn"] && permission_exists("upgrade_svn") && !is_dir("/usr/share/fusionpbx")) { + if ($do["svn"] && permission_exists("upgrade_svn") && !is_dir("/var/lib/fusionpbx")) { $cmd = "svn up /var/www/fusionpbx"; exec($cmd, $response_svn_update); if (sizeof($response_svn_update) > 0) {