From cff8c462da9d17cd06a2eaa282efb041e5c420f1 Mon Sep 17 00:00:00 2001 From: Joshua Judson Rosen Date: Mon, 24 Nov 2014 20:28:31 -0500 Subject: [PATCH] sendemailsummary.php: correct path to INSTALLDIR So that we can actually find commandline.inc. This should have been updated when the files in the EmailSummary tree where moved down a level into subdirectories. --- plugins/EmailSummary/scripts/sendemailsummary.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/EmailSummary/scripts/sendemailsummary.php b/plugins/EmailSummary/scripts/sendemailsummary.php index 01c11a210a..06a5327f61 100644 --- a/plugins/EmailSummary/scripts/sendemailsummary.php +++ b/plugins/EmailSummary/scripts/sendemailsummary.php @@ -17,7 +17,7 @@ * along with this program. If not, see . */ -define('INSTALLDIR', realpath(dirname(__FILE__) . '/../..')); +define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); $shortoptions = 'i:n:au'; $longoptions = array('id=', 'nickname=', 'all', 'universe');