From: <var...@us...> - 2013-02-15 15:14:54
|
Revision: 8728 http://sourceforge.net/p/phpwiki/code/8728 Author: vargenau Date: 2013-02-15 15:14:50 +0000 (Fri, 15 Feb 2013) Log Message: ----------- Add class warning_msg; remove brackets Modified Paths: -------------- trunk/lib/editpage.php Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2013-02-06 10:04:48 UTC (rev 8727) +++ trunk/lib/editpage.php 2013-02-15 15:14:50 UTC (rev 8728) @@ -523,8 +523,8 @@ $diff = new Diff($this->current->getContent(), explode("\n", $this->getContent())); if ($diff->isEmpty()) { $html->pushContent(HTML::hr(), - HTML::p('[', _("Versions are identical"), - ']')); + HTML::p(array('class' => 'warning_msg'), + _("Versions are identical"))); } else { // New CSS formatted unified diffs $fmt = new HtmlUnifiedDiffFormatter; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |