diff options
| author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-10-08 15:45:34 +0200 |
|---|---|---|
| committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-10-08 15:45:34 +0200 |
| commit | 5b7b0894e0a54c117ebf43bd8206e4b3ab8953d8 (patch) | |
| tree | 3f2c54898b6b2b175ea25cc2c51120668aad0805 /phpBB/adm | |
| parent | 542498e457c5e354a39c7cf3eb11f66f263acd59 (diff) | |
| parent | 80fee7422cdd448db7b908316c532b8674d81e5d (diff) | |
| download | forums-5b7b0894e0a54c117ebf43bd8206e4b3ab8953d8.tar forums-5b7b0894e0a54c117ebf43bd8206e4b3ab8953d8.tar.gz forums-5b7b0894e0a54c117ebf43bd8206e4b3ab8953d8.tar.bz2 forums-5b7b0894e0a54c117ebf43bd8206e4b3ab8953d8.tar.xz forums-5b7b0894e0a54c117ebf43bd8206e4b3ab8953d8.zip | |
Merge pull request #3733 from javiexin/ticket/13934
[ticket/13934] Add enctype clause for profile fields
* javiexin/ticket/13934:
[ticket/13934] Add enctype clause for profile fields
Diffstat (limited to 'phpBB/adm')
| -rw-r--r-- | phpBB/adm/style/acp_profile.html | 2 | ||||
| -rw-r--r-- | phpBB/adm/style/acp_users_profile.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_profile.html b/phpBB/adm/style/acp_profile.html index 3ce2d9471d..07718846cc 100644 --- a/phpBB/adm/style/acp_profile.html +++ b/phpBB/adm/style/acp_profile.html @@ -17,7 +17,7 @@ </div> <!-- ENDIF --> - <form id="add_profile_field" method="post" action="{U_ACTION}"> + <form id="add_profile_field" method="post" action="{U_ACTION}"{S_FORM_ENCTYPE}> <!-- IF S_STEP_ONE --> diff --git a/phpBB/adm/style/acp_users_profile.html b/phpBB/adm/style/acp_users_profile.html index 573534fc95..9296638ff6 100644 --- a/phpBB/adm/style/acp_users_profile.html +++ b/phpBB/adm/style/acp_users_profile.html @@ -1,4 +1,4 @@ - <form id="user_profile" method="post" action="{U_ACTION}"> + <form id="user_profile" method="post" action="{U_ACTION}"{S_FORM_ENCTYPE}> <fieldset> <legend>{L_USER_PROFILE}</legend> |
