From 3dfce62636b90575495022d0f55da931d8ddd10d Mon Sep 17 00:00:00 2001 From: Pascal Dreissen <pascal@dreissen.nl> Date: Fri, 8 Jul 2016 09:06:17 +0200 Subject: [PATCH] Revert "vhost quota not correctly pointing to document root (DF -T) fixes #3984" This reverts commit 7827db364a0de419f678301445421108574c3d37 --- server/plugins-available/apache2_plugin.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/plugins-available/apache2_plugin.inc.php b/server/plugins-available/apache2_plugin.inc.php index e3b8bfe695..ec92e699bb 100644 --- a/server/plugins-available/apache2_plugin.inc.php +++ b/server/plugins-available/apache2_plugin.inc.php @@ -884,7 +884,7 @@ class apache2_plugin { } // get the primitive folder for document_root and the filesystem, will need it later. - $df_output=explode(" ", exec("df -T " . $data['new']['document_root'] . "|awk 'END{print \$2,\$NF}'")); + $df_output=explode(" ", exec("df -T $document_root|awk 'END{print \$2,\$NF}'")); $file_system = $df_output[0]; $primitive_root = $df_output[1]; -- GitLab