// temporary fix

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9514 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2011-10-20 15:21:04 +00:00
parent d1719fc0e2
commit 0598f561b7
+5 -3
View File
@@ -98,8 +98,10 @@ class StatsForecast extends Module
$intervalAvg = $interval2;
if ($this->context->cookie->stats_granularity == 42)
$intervalAvg = $interval2 / 7;
define('PS_BASE_URI', '/');
// @todo : to remove
if (!defined('PS_BASE_URI'))
define('PS_BASE_URI', '/');
$result = $db->getRow('SELECT UNIX_TIMESTAMP(\'2009-06-05\') as t1, UNIX_TIMESTAMP(\''.$employee->stats_date_from.'\') as t2');
$from = max($result['t1'], $result['t2']);
$to = strtotime($employee->stats_date_to.'');
@@ -604,4 +606,4 @@ function statsforecast_sort($a, $b)
if ($a['orderSum'] == $b['orderSum'])
return 0;
return ($a['orderSum'] > $b['orderSum']) ? -1 : 1;
}
}