Changed input element ID names to make more sense

This commit is contained in:
lorilee
2010-06-24 16:55:55 -04:00
parent d5175bc7df
commit 66c6a30185
2 changed files with 4 additions and 4 deletions

View File

@@ -2862,7 +2862,7 @@ function PMA_js($code, $print=true)
*/
function PMA_browseUploadFile($max_upload_size) {
$uid = uniqid("");
echo '<label for="upload_file_input">' . __("Browse the server:") . '</label>';
echo '<label for="radio_import_file">' . __("Browse the server:") . '</label>';
echo '<div id="upload_form_status" style="display: none;"></div>';
echo '<div id="upload_form_status_info" style="display: none;"></div>';
echo '<input type="file" name="import_file" id="input_import_file" />';
@@ -2875,7 +2875,7 @@ function PMA_browseUploadFile($max_upload_size) {
* Display the form used to select a file to import from the server upload directory
*/
function PMA_selectUploadFile($import_list, $uploaddir) {
echo '<label for="select_local_import_file">' . sprintf(__("Select from the web server upload directory <b>%s</b>:"), htmlspecialchars(PMA_userDir($uploaddir))) . '</label>';
echo '<label for="radio_local_import_file">' . sprintf(__("Select from the web server upload directory <b>%s</b>:"), htmlspecialchars(PMA_userDir($uploaddir))) . '</label>';
$extensions = '';
foreach ($import_list as $key => $val) {
if (!empty($extensions)) {

View File

@@ -145,11 +145,11 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
<?php if($GLOBALS['is_upload'] && !empty($cfg['UploadDir'])) { ?>
<ul>
<li>
<input type="radio" name="file_location" id="upload_file_input" />
<input type="radio" name="file_location" id="radio_import_file" />
<?php PMA_browseUploadFile($max_upload_size); ?>
</li>
<li>
<input type="radio" name="file_location" id="upload_file_uploaddir" />
<input type="radio" name="file_location" id="radio_local_import_file" />
<?php PMA_selectUploadFile($import_list, $cfg['UploadDir']); ?>
</li>
</ul>