From: <var...@us...> - 2009-06-15 12:59:25
|
Revision: 6935 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6935&view=rev Author: vargenau Date: 2009-06-15 12:59:13 +0000 (Mon, 15 Jun 2009) Log Message: ----------- Add fieldset and legend Modified Paths: -------------- trunk/lib/plugin/WatchPage.php Modified: trunk/lib/plugin/WatchPage.php =================================================================== --- trunk/lib/plugin/WatchPage.php 2009-06-15 12:45:34 UTC (rev 6934) +++ trunk/lib/plugin/WatchPage.php 2009-06-15 12:59:13 UTC (rev 6935) @@ -74,13 +74,13 @@ function showNotify(&$request, $messages, $page, $pagelist, $verified) { $isNecessary = ! $this->contains($pagelist, $page); - $form = HTML::form - (array('action' => $request->getPostURL(), - 'method' => 'post'), + $form = HTML::fieldset(HTML::legend("Watch Page"), + HTML::form(array('action' => $request->getPostURL(), + 'method' => 'post'), HiddenInputs(array('verify' => 1)), HiddenInputs($request->getArgs(),false,array('verify')), $messages, - HTML::p(_("Your current watchlist: "), $this->showWatchList($pagelist))); + HTML::p(_("Your current watchlist: "), $this->showWatchList($pagelist)))); if ($isNecessary) { $form->pushContent(HTML::p(_("New watchlist: "), $this->showWatchList($this->addpagelist($page, $pagelist))), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |