From: Geoffrey T. D. <da...@us...> - 2001-12-15 17:03:48
|
Update of /cvsroot/phpwiki/phpwiki/lib/plugin In directory usw-pr-cvs1:/tmp/cvs-serv8428/lib/plugin Modified Files: RecentChanges.php Log Message: Upon Carsten's suggestion, moved the summary brackets outside of the <b>. I think I liked it better the old way. Does anyone else have an opinion? Index: RecentChanges.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/plugin/RecentChanges.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** RecentChanges.php 2001/12/15 10:55:07 1.9 --- RecentChanges.php 2001/12/15 17:03:45 1.10 *************** *** 187,191 **** function format_revision ($rev) { if ( ($summary = $this->summary($rev)) ) ! $summary = QElement('b', "[$summary]"); $class = 'rc-' . $this->importance($rev); --- 187,191 ---- function format_revision ($rev) { if ( ($summary = $this->summary($rev)) ) ! $summary = "[" . QElement('b', array('class' => 'wiki:summary'), $summary) . "]"; $class = 'rc-' . $this->importance($rev); |