From 761848c76f5e0ab652f5865276c8742736908d26 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Thu, 3 Jan 2013 16:58:38 +0000 Subject: [PATCH] Only the last 3 months (exclusive of current) for 'Last 3 months' --- importexport/inc/class.importexport_helper_functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importexport/inc/class.importexport_helper_functions.inc.php b/importexport/inc/class.importexport_helper_functions.inc.php index 7bdb3ba7d9..ff7b3c2516 100755 --- a/importexport/inc/class.importexport_helper_functions.inc.php +++ b/importexport/inc/class.importexport_helper_functions.inc.php @@ -36,7 +36,7 @@ class importexport_helper_functions { 'Last week' => array(0,0,0,-1, 0,0,0,0), 'This month' => array(0,0,0,0, 0,1,0,0), 'Last month' => array(0,-1,0,0, 0,0,0,0), - 'Last 3 months' => array(0,-3,0,0, 0,1,0,0), + 'Last 3 months' => array(0,-3,0,0, 0,0,0,0), 'This quarter'=> array(0,0,0,0, 0,0,0,0), // Just a marker, needs special handling 'Last quarter'=> array(0,-4,0,0, 0,-4,0,0), // Just a marker 'This year' => array(0,0,0,0, 1,0,0,0),