diff options
author | spocky <spocky@ampache> | 2007-11-20 23:09:40 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-11-20 23:09:40 +0000 |
commit | 794036ac1f462f302ce71e64132d981f69023e09 (patch) | |
tree | 0b2835d19cf7baf854fa3c894aa067bf5356e5cc /templates/show_preferences.inc.php | |
parent | 28b86ee456498776e596008ef531b950ec32e7c9 (diff) | |
download | ampache-794036ac1f462f302ce71e64132d981f69023e09.tar.gz ampache-794036ac1f462f302ce71e64132d981f69023e09.tar.bz2 ampache-794036ac1f462f302ce71e64132d981f69023e09.zip |
Almost finished css cleanup
Diffstat (limited to 'templates/show_preferences.inc.php')
-rw-r--r-- | templates/show_preferences.inc.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/show_preferences.inc.php b/templates/show_preferences.inc.php index aabb5ca4..af331ab4 100644 --- a/templates/show_preferences.inc.php +++ b/templates/show_preferences.inc.php @@ -25,19 +25,21 @@ */ ?> -<?php show_box_top(_('Editing') . ' ' . $fullname . ' ' . _('preferences')); ?> +<?php show_box_top(_('Editing') . ' ' . $fullname . ' ' . _('preferences'),'box box_preferences'); ?> <form method="post" name="preferences" action="<?php echo Config::get('web_path'); ?>/preferences.php?action=update_preferences" enctype="multipart/form-data"> <?php if ($_REQUEST['tab'] != 'account' && $_REQUEST['tab'] != 'modules') { show_preference_box($preferences[$_REQUEST['tab']]); ?> +<div class="formValidation"> <input class="button" type="submit" value="<?php echo _('Update Preferences'); ?>" /> <input type="hidden" name="tab" value="<?php echo scrub_out($_REQUEST['tab']); ?>" /> <input type="hidden" name="method" value="<?php echo scrub_out($_REQUEST['action']); ?>" /> <?php if ($GLOBALS['user']->has_access('100')) { ?> <input type="hidden" name="user_id" value="<?php echo scrub_out($_REQUEST['user_id']); ?>" /> <?php } ?> +</div> <?php } // end if not account if ($_REQUEST['tab'] == 'account') { |