Fixed undefined variable.

master
Loic d'Anterroches 2009-06-08 19:26:58 +02:00
parent 88a1bf9c94
commit 15cba014ba
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ class IDF_Scm_Svn extends IDF_Scm
$res['date'] = gmdate('Y-m-d H:i:s', strtotime((string) $xml->logentry->date));
$res['title'] = (string) $xml->logentry->msg;
$res['commit'] = (string) $xml->logentry['revision'];
$res['changes'] = ($getdiff) ? $this->getDiff($rev) : '';
$res['changes'] = ($getdiff) ? $this->getDiff($commit) : '';
$res['tree'] = '';
return (object) $res;
}