From: <var...@us...> - 2015-01-12 10:09:29
|
Revision: 9464 http://sourceforge.net/p/phpwiki/code/9464 Author: vargenau Date: 2015-01-12 10:09:13 +0000 (Mon, 12 Jan 2015) Log Message: ----------- HTML::Table --> HTML::table Modified Paths: -------------- trunk/lib/diff.php trunk/lib/plugin/Diff.php Modified: trunk/lib/diff.php =================================================================== --- trunk/lib/diff.php 2015-01-12 10:05:48 UTC (rev 9463) +++ trunk/lib/diff.php 2015-01-12 10:09:13 UTC (rev 9464) @@ -341,7 +341,7 @@ if ($old and $old->getVersion() == 0) $old = false; - $html->pushContent(HTML::Table(PageInfoRow(_("Newer page:"), $new, + $html->pushContent(HTML::table(PageInfoRow(_("Newer page:"), $new, $request, empty($version)), PageInfoRow(_("Older page:"), $old, $request, false))); Modified: trunk/lib/plugin/Diff.php =================================================================== --- trunk/lib/plugin/Diff.php 2015-01-12 10:05:48 UTC (rev 9463) +++ trunk/lib/plugin/Diff.php 2015-01-12 10:09:13 UTC (rev 9464) @@ -173,7 +173,7 @@ if ($old and $old->getVersion() == 0) $old = false; - $html->pushContent(HTML::Table($this->PageInfoRow(_("Newer page:"), $new, + $html->pushContent(HTML::table($this->PageInfoRow(_("Newer page:"), $new, $request), $this->PageInfoRow(_("Older page:"), $old, $request))); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |