Commit 3fefe308 authored by Medicean's avatar Medicean

修正PHP Custom Script DML 状态结果显示编码问题

parent fd623b70
......@@ -134,7 +134,7 @@ function executeSQL($encode, $conf, $sql, $columnsep, $rowsep, $needcoluname){
$conn = @mysqli_connect($host, $user, $password);
$res = @mysqli_query($conn, $sql);
if (is_bool($res)) {
return "Status".$columnsep.$rowsep.($res?"VHJ1ZQ==":"RmFsc2U=").$columnsep.$rowsep;
return "Status".$columnsep.$rowsep.($res?"True":"False").$columnsep.$rowsep;
}
$i=0;
if ($needcoluname) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment