From: <var...@us...> - 2010-06-28 08:29:14
|
Revision: 7586 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7586&view=rev Author: vargenau Date: 2010-06-28 08:29:08 +0000 (Mon, 28 Jun 2010) Log Message: ----------- Use CSS instaed if <br /> Modified Paths: -------------- trunk/themes/gforge/templates/userprefs.tmpl Modified: trunk/themes/gforge/templates/userprefs.tmpl =================================================================== --- trunk/themes/gforge/templates/userprefs.tmpl 2010-06-27 17:37:47 UTC (rev 7585) +++ trunk/themes/gforge/templates/userprefs.tmpl 2010-06-28 08:29:08 UTC (rev 7586) @@ -187,7 +187,7 @@ <form action="<?=$request->getPostURL()?>" method="post"> <?php } ?> -<fieldset> +<fieldset style="margin-bottom: 1em;"> <legend><strong>User preferences for this project</strong></legend> <table border="0" width="100%"> @@ -207,8 +207,8 @@ </table> </fieldset> -<br /> -<fieldset> + +<fieldset style="margin-bottom: 1em;"> <legend><strong>Global user preferences (for all projects)</strong></legend> <table border="0" width="100%"> @@ -363,11 +363,11 @@ </fieldset> <?php if ($isForm) { ?> - <br /> - <p><?=Button("submit:", _("Update Preferences"), 'wikiadmin')?> +<p> + <?=Button("submit:", _("Update Preferences"), 'wikiadmin')?> <?=Button("submit:delete", _("Reset Preferences"), 'wikiadmin')?> - <?=Button("submit:cancel", _("Cancel"), 'button')?></p> - -<?= HiddenInputs($request->getArgs(), false, array('pref')) ?> + <?=Button("submit:cancel", _("Cancel"), 'button')?> + <?= HiddenInputs($request->getArgs(), false, array('pref')) ?> +</p> </form> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |