Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv6457/phpwiki/lib
Modified Files:
diff.php
Log Message:
Added visual separators between "Other diffs:" list. (An extra leading comma still needs to be fixed)
Index: diff.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/diff.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** diff.php 2001/12/16 18:33:25 1.21
--- diff.php 2001/12/18 06:28:16 1.22
***************
*** 260,264 ****
if ($version)
$args['version'] = $version;
! $otherdiffs .= ' ' . QElement('a', array('href' => WikiURL($pagename, $args),
'class' => 'wikiaction'),
$label[$other]);
--- 260,264 ----
if ($version)
$args['version'] = $version;
! $otherdiffs .= ', ' . QElement('a', array('href' => WikiURL($pagename, $args),
'class' => 'wikiaction'),
$label[$other]);
***************
*** 266,270 ****
$html .= Element('p',
htmlspecialchars(_("Other diffs:"))
! . $otherdiffs);
--- 266,270 ----
$html .= Element('p',
htmlspecialchars(_("Other diffs:"))
! . $otherdiffs . '.');
|