Update of /cvsroot/phpwiki/phpwiki/lib/plugin
In directory usw-pr-cvs1:/tmp/cvs-serv19433/lib/plugin
Modified Files:
RecentChanges.php
Log Message:
Brackets back inside bold (Carsten has recanted his preference for
non-bold brackets :-) ).
Lowercase time (AM -> am).
Index: RecentChanges.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/plugin/RecentChanges.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** RecentChanges.php 2001/12/16 18:33:25 1.11
--- RecentChanges.php 2001/12/16 19:04:12 1.12
***************
*** 27,32 ****
function time ($rev) {
! // FIXME: Make configurable.
! return strftime("%l:%M %p", $rev->get('mtime'));
}
--- 27,31 ----
function time ($rev) {
! return strtolower(strftime("%l:%M %p", $rev->get('mtime')));
}
***************
*** 187,192 ****
function format_revision ($rev) {
if ( ($summary = $this->summary($rev)) )
! $summary = "[" . QElement('b', array('class' => 'wiki:summary'), $summary) . "]";
!
$class = 'rc-' . $this->importance($rev);
--- 186,191 ----
function format_revision ($rev) {
if ( ($summary = $this->summary($rev)) )
! $summary = QElement('b', array('class' => 'wiki:summary'), "[$summary]");
!
$class = 'rc-' . $this->importance($rev);
|