diff options
Diffstat (limited to 'phpBB/templates')
-rwxr-xr-x | phpBB/templates/Default/profile_add_body.tpl | 2 | ||||
-rw-r--r-- | phpBB/templates/Euclid/profile_add_body.tpl | 2 | ||||
-rw-r--r-- | phpBB/templates/subSilver/admin/board_config_body.tpl | 2 | ||||
-rw-r--r-- | phpBB/templates/subSilver/admin/user_edit_body.tpl | 2 | ||||
-rw-r--r-- | phpBB/templates/subSilver/profile_add_body.tpl | 2 |
5 files changed, 6 insertions, 4 deletions
diff --git a/phpBB/templates/Default/profile_add_body.tpl b/phpBB/templates/Default/profile_add_body.tpl index ca9b56ff86..f919f8fab6 100755 --- a/phpBB/templates/Default/profile_add_body.tpl +++ b/phpBB/templates/Default/profile_add_body.tpl @@ -1,5 +1,5 @@ <tr> - <td><form action="{S_PROFILE_ACTION}" enctype="multipart/form-data" method="post"> + <td><form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post"> <table border="0" align="center" width="100%" bgcolor="#000000" cellpadding="0" cellspacing="1"> <tr> <td> diff --git a/phpBB/templates/Euclid/profile_add_body.tpl b/phpBB/templates/Euclid/profile_add_body.tpl index 43f316fabb..86d5202a86 100644 --- a/phpBB/templates/Euclid/profile_add_body.tpl +++ b/phpBB/templates/Euclid/profile_add_body.tpl @@ -1,5 +1,5 @@ -<form action="{S_PROFILE_ACTION}" enctype="multipart/form-data" method="post"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center"> +<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center"> <tr> <td align="left"><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a></span></td> </tr> diff --git a/phpBB/templates/subSilver/admin/board_config_body.tpl b/phpBB/templates/subSilver/admin/board_config_body.tpl index e3739d49c4..0447747cb6 100644 --- a/phpBB/templates/subSilver/admin/board_config_body.tpl +++ b/phpBB/templates/subSilver/admin/board_config_body.tpl @@ -178,10 +178,12 @@ <td class="row1">{L_ALLOW_REMOTE} <br /><span class="gensmall">{L_ALLOW_REMOTE_EXPLAIN}</span></td> <td class="row2"><input type="radio" name="allow_avatar_remote" value="1" {AVATARS_REMOTE_YES} /> {L_YES} <input type="radio" name="allow_avatar_remote" value="0" {AVATARS_REMOTE_NO} /> {L_NO}</td> </tr> + <!-- BEGIN switch_uploads_possible --> <tr> <td class="row1">{L_ALLOW_UPLOAD}</td> <td class="row2"><input type="radio" name="allow_avatar_upload" value="1" {AVATARS_UPLOAD_YES} /> {L_YES} <input type="radio" name="allow_avatar_upload" value="0" {AVATARS_UPLOAD_NO} /> {L_NO}</td> </tr> + <!-- END switch_uploads_possible --> <tr> <td class="row1">{L_MAX_FILESIZE}<br /><span class="gensmall">{L_MAX_FILESIZE_EXPLAIN}</span></td> <td class="row2"><input type="text" size="4" maxlength="10" name="avatar_filesize" value="{AVATAR_FILESIZE}" /> Bytes</td> diff --git a/phpBB/templates/subSilver/admin/user_edit_body.tpl b/phpBB/templates/subSilver/admin/user_edit_body.tpl index 209adbca4d..1790582c98 100644 --- a/phpBB/templates/subSilver/admin/user_edit_body.tpl +++ b/phpBB/templates/subSilver/admin/user_edit_body.tpl @@ -5,7 +5,7 @@ {ERROR_BOX} -<form action="{S_PROFILE_ACTION}" enctype="multipart/form-data" method="post"><table width="98%" cellspacing="1" cellpadding="4" border="0" align="center" class="forumline"> +<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post"><table width="98%" cellspacing="1" cellpadding="4" border="0" align="center" class="forumline"> <tr> <th class="thHead" colspan="2">{L_REGISTRATION_INFO}</th> </tr> diff --git a/phpBB/templates/subSilver/profile_add_body.tpl b/phpBB/templates/subSilver/profile_add_body.tpl index 165652cd51..05ebadee9f 100644 --- a/phpBB/templates/subSilver/profile_add_body.tpl +++ b/phpBB/templates/subSilver/profile_add_body.tpl @@ -1,5 +1,5 @@ -<form action="{S_PROFILE_ACTION}" enctype="multipart/form-data" method="post"> +<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post"> {ERROR_BOX} <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> |