diff options
author | Marc Alexander <admin@m-a-styles.de> | 2012-12-04 00:49:37 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2012-12-04 00:49:37 +0100 |
commit | b42ca792fd7765eb415536c49b77c53c0897367e (patch) | |
tree | 7d671944fb1c3a2a6095c70da191c03fcbe90b4b /phpBB/adm/style | |
parent | ce653db49129f215c18c4d0dab24001d73ba94e6 (diff) | |
download | forums-b42ca792fd7765eb415536c49b77c53c0897367e.tar forums-b42ca792fd7765eb415536c49b77c53c0897367e.tar.gz forums-b42ca792fd7765eb415536c49b77c53c0897367e.tar.bz2 forums-b42ca792fd7765eb415536c49b77c53c0897367e.tar.xz forums-b42ca792fd7765eb415536c49b77c53c0897367e.zip |
[feature/avatars] Minor variable naming fixes
PHPBB3-10018
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_users_avatar.html | 2 | ||||
-rw-r--r-- | phpBB/adm/style/avatars.js | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/adm/style/acp_users_avatar.html b/phpBB/adm/style/acp_users_avatar.html index bc3a19a25e..0a72bb0b62 100644 --- a/phpBB/adm/style/acp_users_avatar.html +++ b/phpBB/adm/style/acp_users_avatar.html @@ -32,8 +32,8 @@ <fieldset class="quick"> <input type="submit" name="update" value="{L_SUBMIT}" class="button1" /> - </fieldset> {S_FORM_TOKEN} + </fieldset> </form> <!-- INCLUDEJS avatars.js --> diff --git a/phpBB/adm/style/avatars.js b/phpBB/adm/style/avatars.js index 882bcfe36d..a53814c15f 100644 --- a/phpBB/adm/style/avatars.js +++ b/phpBB/adm/style/avatars.js @@ -2,14 +2,14 @@ "use strict"; -function avatar_simplify() { +function avatar_hide() { $('#avatar_options > div').hide(); var selected = $('#avatar_driver').val(); $('#avatar_option_' + selected).show(); } -avatar_simplify(); -$('#avatar_driver').bind('change', avatar_simplify); +avatar_hide(); +$('#avatar_driver').bind('change', avatar_hide); })(jQuery); // Avoid conflicts with other libraries |