Update of /cvsroot/phpwiki/phpwiki/lib/plugin
In directory usw-pr-cvs1:/tmp/cvs-serv8136/lib/plugin
Modified Files:
RecentChanges.php
Log Message:
Linkify WikiWords (& bracket links & URLs) in RecentChanges summaries.
Index: RecentChanges.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/plugin/RecentChanges.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** RecentChanges.php 2001/12/18 06:36:05 1.14
--- RecentChanges.php 2001/12/18 18:47:29 1.15
***************
*** 186,191 ****
function format_revision ($rev) {
! if ( ($summary = $this->summary($rev)) )
! $summary = QElement('b', array('class' => 'wiki-summary'), "[$summary]");
$class = 'rc-' . $this->importance($rev);
--- 186,193 ----
function format_revision ($rev) {
! if ( ($summary = $this->summary($rev)) ) {
! $summary = do_transform($summary, 'LinkTransform');
! $summary = Element('b', array('class' => 'wiki-summary'), "[$summary]");
! }
$class = 'rc-' . $this->importance($rev);
|