From: Joshua Judson Rosen Date: Tue, 25 Nov 2014 01:28:31 +0000 (-0500) Subject: sendemailsummary.php: correct path to INSTALLDIR X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cff8c462da9d17cd06a2eaa282efb041e5c420f1;p=quix0rs-gnu-social.git 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. --- 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');