AddOn/SQL-ManagmentStudio_Online/index.php aktualisiert

Update Bug for ExporttableName on SQL Create Table Text ist ""
This commit is contained in:
olinet 2025-08-01 19:09:22 +02:00
parent 21036ae5ec
commit 17eeb47d88
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['sql_query'])) {
$exportTabelName = "ExportTable".rand();
if(isset($_POST['format'])){ $returnformat = $_POST['format']; }
if(isset($_POST['admin_pass'])){ $adminPass = $_POST['admin_pass']; }
if(isset($_POST['exporttabelName'])){ $exportTabelName = $_POST['exporttabelName']; }
if(!empty($_POST['exporttabelName'])){ $exportTabelName = $_POST['exporttabelName']; }
$resultMessage = executeSQL($conn, $sqlQuery, $returnformat, $adminPass, $changeDataInSQLPassword, $exportTabelName);
}