diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-02 01:20:06 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-02 01:20:06 +0000 |
commit | e63966b49063ceebdb948e7992af6504c6dcf477 (patch) | |
tree | 3aca07dad0001456aa1e9aba4a479bbbb7cfffa0 /core | |
parent | 64d6f9aea6916ecb7c25f0fec1cb9cf582cbba55 (diff) |
Tweak indentation
Diffstat (limited to 'core')
-rw-r--r-- | core/views/admin_themes.html.php | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/core/views/admin_themes.html.php b/core/views/admin_themes.html.php index b1fefd1e..861c60cc 100644 --- a/core/views/admin_themes.html.php +++ b/core/views/admin_themes.html.php @@ -1,13 +1,17 @@ <? defined("SYSPATH") or die("No direct script access.") ?> <div id="gThemes"> <h1><?= _("Theme Administration") ?></h2> - <p><?= _("These are the themes in your system") ?></p> + <p> + <?= _("These are the themes in your system") ?> + </p> <form method="post" action="<?= url::site("admin/themes/save") ?>"> - <?= access::csrf_form_field() ?> - <? foreach ($themes as $theme): ?> - <input type="radio" name="theme" value="<?= $theme ?>" - <? if ($theme == $active): ?> checked="checked" <? endif ?> /><?= $theme ?> - <? endforeach ?> - <input type="submit" value="<?= _("Save") ?>"/> + <?= access::csrf_form_field() ?> + <? foreach ($themes as $theme): ?> + <input type="radio" name="theme" value="<?= $theme ?>" + <? if ($theme == $active): ?> checked="checked" <? endif ?> + /> + <?= $theme ?> + <? endforeach ?> + <input type="submit" value="<?= _("Save") ?>"/> </form> </div> |