Added missing backslash in paht generation for Cron command (Windows)

This affects the report admin
This commit is contained in:
Andre Lorbach 2012-12-20 15:30:49 +01:00
parent 69af9b9bc3
commit 5883df1f47

View File

@ -68,7 +68,7 @@ function CreateCronCommand( $myReportID, $mySavedReportID = null )
{
// Running on Windows
$phpCmd = PHP_BINDIR . "\\php.exe";
$phpScript = realpath($gl_root_path) . "cron\\cmdreportgen.php";
$phpScript = realpath($gl_root_path) . "\\cron\\cmdreportgen.php";
}
else
{