RFE #1053039 - show file name of uploaded file

This commit is contained in:
Garvin Hicking
2004-11-02 14:05:43 +00:00
parent ae2022381e
commit bb4bc45976
2 changed files with 4 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ $Source$
2004-11-09 Garvin Hicking
* read_dump.php: RFE #1053039, show filename of uploaded SQL file
* sql.php, tbl_indexes.php, libraries/tbl_indexes.lib.php,
lang/*: Added checks for common problems with table indices.
Serves as a stub for future checks, currently implemented are

View File

@@ -411,7 +411,9 @@ if (!empty($id_bookmark) && $action_bookmark == 2) {
$message = $strNoQuery;
}
} else if ($sql_query_cpy == '') {
$message = "$strSuccess:<br />$strTheContent ($pieces_count $strInstructions)&nbsp;";
$message = "$strSuccess:<br />$strTheContent ("
. (isset($sql_file_name) ? $sql_file_name . ': ' : '')
. "$pieces_count $strInstructions)&nbsp;";
} else {
$message = $strSuccess;
}