this bug 6018 was solved, there were some mistakes when you made to run the cron
This commit is contained in:
@@ -247,7 +247,7 @@ function executePlugins(){
|
||||
$className = $filename . 'ClassCron';
|
||||
|
||||
include_once ( $pathCronPlugins . $file ); //$filename. ".php"
|
||||
$oPlugin =& new $className();
|
||||
$oPlugin = new $className();
|
||||
if (method_exists($oPlugin, 'executeCron')) {
|
||||
$oPlugin->executeCron();
|
||||
setExecutionMessage("Executing Pentaho Reports Plugin");
|
||||
|
||||
@@ -254,6 +254,9 @@ class spoolRun {
|
||||
$holdcc = array ();
|
||||
$holdbcc = array ();
|
||||
$text = trim($this->fileData['to']);
|
||||
|
||||
$textcc ='';
|
||||
$textbcc='';
|
||||
if( isset($this->fileData['cc']) && trim($this->fileData['cc']) != '' ) {
|
||||
$textcc = trim($this->fileData['cc']);
|
||||
}
|
||||
|
||||
@@ -351,7 +351,7 @@ switch($_POST['action']) {
|
||||
break;
|
||||
|
||||
case 'pauseCase':
|
||||
$unpausedate = $_POST['unpausedate'];
|
||||
$unpauseDate = $_POST['unpausedate'];
|
||||
$oCase = new Cases();
|
||||
if( isset($_POST['APP_UID']) && isset($_POST['DEL_INDEX']) ) {
|
||||
$APP_UID = $_POST['APP_UID'];
|
||||
|
||||
Reference in New Issue
Block a user