Skip to content

Commit

Permalink
fix minor issue when exception -contribution heads up 0008191: warnin…
Browse files Browse the repository at this point in the history
…g because $issue variables not found in redminerestInterface.class.php exception handlers
  • Loading branch information
fmancardi committed Feb 10, 2018
1 parent 2145436 commit ef1a9c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/issuetrackerintegration/redminerestInterface.class.php
Expand Up @@ -461,7 +461,7 @@ public function addNote($issueID,$noteText,$opt=null)
{
$msg = "REDMINE Add Note to Ticket FAILURE => " . $e->getMessage();
tLog($msg, 'WARNING');
$ret = array('status_ok' => false, 'id' => -1, 'msg' => $msg . ' - serialized issue:' . serialize($issue));
$ret = array('status_ok' => false, 'id' => -1, 'msg' => $msg . ' - serialized issue:' . serialize($issueXmlObj));
}
return $ret;
}
Expand Down

0 comments on commit ef1a9c2

Please sign in to comment.