diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-19 23:11:57 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-19 23:11:57 +0000 |
commit | 5296a8d351f94a04d19791e4c9d3b73c5cb82ac6 (patch) | |
tree | b26f7d6ec135270353ec1feebc304e49c2311a14 /templates/show_edit_user.inc.php | |
parent | ffb43ad33ec6198df04cf188a205f236863d1dd3 (diff) | |
download | ampache-5296a8d351f94a04d19791e4c9d3b73c5cb82ac6.tar.gz ampache-5296a8d351f94a04d19791e4c9d3b73c5cb82ac6.tar.bz2 ampache-5296a8d351f94a04d19791e4c9d3b73c5cb82ac6.zip |
fixed issue with xmlapi when no limit provided, fixed now playing refresh, fixed single item update (Thx alex2008) added some more stuff for managing shoutbox stuff, started work on implementation of CoFs system added untested search method on xmlapi
Diffstat (limited to 'templates/show_edit_user.inc.php')
-rw-r--r-- | templates/show_edit_user.inc.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/show_edit_user.inc.php b/templates/show_edit_user.inc.php index 7b119736..56ed7179 100644 --- a/templates/show_edit_user.inc.php +++ b/templates/show_edit_user.inc.php @@ -19,6 +19,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +$form_string = generate_password('32'); +$_SESSION['forms']['adminuser'] = $form_string; ?> <?php show_box_top(_('Editing existing User')); ?> <?php Error::display('general'); ?> @@ -83,6 +85,7 @@ <div class="formValidation"> <input type="hidden" name="action" value="update_user" /> <input type="submit" value="<?php echo _('Update User'); ?>" /> + <input type="hidden" name="formkey" value="<?php echo $form_string; ?>" /> <input type="hidden" name="user_id" value="<?php echo $client->id; ?>" /> </div> </form> |