mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-09-19 01:52:09 +00:00
trim string before putting into textarea
This commit is contained in:
@@ -72,7 +72,7 @@ if ($cmd == "getTable") {
|
||||
foreach ($fileLines as $line) {
|
||||
$row = explode("\t", $line);
|
||||
$key = $row[0];
|
||||
$string = $row[1];
|
||||
$string = trim($row[1]);
|
||||
|
||||
$rowData = [
|
||||
'rowid' => $rowid,
|
||||
|
4
src/tabs/Tbl.php
Normal file
4
src/tabs/Tbl.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
|
||||
require_once getcwd() . '/TblEditorGUI_TAB.php';
|
Reference in New Issue
Block a user