projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f88d75c
)
Fix access to public class vars.
author
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 28 Jan 2009 19:31:14 +0000
(12:31 -0700)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Wed, 28 Jan 2009 19:43:29 +0000
(12:43 -0700)
chora/diff.php
patch
|
blob
|
history
diff --git
a/chora/diff.php
b/chora/diff.php
index
b0d6abc
..
cfbba8e
100644
(file)
--- a/
chora/diff.php
+++ b/
chora/diff.php
@@
-57,11
+57,10
@@
$title = sprintf(_("Diff for %s between version %s and %s"),
Text::htmlallspaces($where), $abbrev_r1, $abbrev_r2);
/* Format log entries. */
-$log = &$fl->logs;
$log_messages = array();
foreach ($VC->getRevisionRange($fl, $r1, $r2) as $val) {
- if (isset($log[$val])) {
- $clog = $log[$val];
+ $clog = $fl->queryLogs($val);
+ if (!is_null($clog)) {
$log_messages[] = array(
'rev' => $val,
'msg' => Chora::formatLogMessage($clog->queryLog()),