From: <var...@us...> - 2011-11-28 14:04:43
|
Revision: 8184 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8184&view=rev Author: vargenau Date: 2011-11-28 14:04:37 +0000 (Mon, 28 Nov 2011) Log Message: ----------- Add <legend> to <fieldset> Modified Paths: -------------- trunk/lib/plugin/WikiAdminChown.php trunk/lib/plugin/WikiAdminMarkup.php trunk/lib/plugin/WikiAdminPurge.php trunk/lib/plugin/WikiAdminRemove.php Modified: trunk/lib/plugin/WikiAdminChown.php =================================================================== --- trunk/lib/plugin/WikiAdminChown.php 2011-11-24 15:15:12 UTC (rev 8183) +++ trunk/lib/plugin/WikiAdminChown.php 2011-11-28 14:04:37 UTC (rev 8184) @@ -168,6 +168,7 @@ $header = HTML::fieldset(); if ($next_action == 'verify') { $button_label = _("Yes"); + $header->pushContent(HTML::legend(_("Confirm ownership change"))); $header->pushContent( HTML::p(HTML::strong( _("Are you sure you want to change the owner of the selected pages?")))); Modified: trunk/lib/plugin/WikiAdminMarkup.php =================================================================== --- trunk/lib/plugin/WikiAdminMarkup.php 2011-11-24 15:15:12 UTC (rev 8183) +++ trunk/lib/plugin/WikiAdminMarkup.php 2011-11-28 14:04:37 UTC (rev 8184) @@ -160,6 +160,7 @@ $header = HTML::fieldset(); if ($next_action == 'verify') { $button_label = _("Yes"); + $header->pushContent(HTML::legend(_("Confirm markup change"))); $header->pushContent( HTML::p(HTML::strong( _("Are you sure you want to change the markup type of the selected files?")))); Modified: trunk/lib/plugin/WikiAdminPurge.php =================================================================== --- trunk/lib/plugin/WikiAdminPurge.php 2011-11-24 15:15:12 UTC (rev 8183) +++ trunk/lib/plugin/WikiAdminPurge.php 2011-11-28 14:04:37 UTC (rev 8184) @@ -142,6 +142,7 @@ $header = HTML::fieldset(); if ($next_action == 'verify') { $button_label = _("Yes"); + $header->pushContent(HTML::legend(_("Confirm purge"))); $header->pushContent(HTML::p(HTML::strong( _("Are you sure you want to permanently purge the following files?")))); } Modified: trunk/lib/plugin/WikiAdminRemove.php =================================================================== --- trunk/lib/plugin/WikiAdminRemove.php 2011-11-24 15:15:12 UTC (rev 8183) +++ trunk/lib/plugin/WikiAdminRemove.php 2011-11-28 14:04:37 UTC (rev 8184) @@ -195,6 +195,7 @@ $header = HTML::fieldset(); if ($next_action == 'verify') { $button_label = _("Yes"); + $header->pushContent(HTML::legend(_("Confirm removal"))); $header->pushContent(HTML::p(HTML::strong( _("Are you sure you want to remove the selected files?")))); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |