diff --git a/tabeleditor.inc.php b/tabeleditor.inc.php index 4fd1e81..afb1b79 100644 --- a/tabeleditor.inc.php +++ b/tabeleditor.inc.php @@ -30,7 +30,7 @@ $entry_name = "__buttons_" . $cell_counter; //$postdata .= $cell_counter; if ($vars[$entry_name]!==null) { - $postdata .= $vars[$entry_name] . "|"; + $postdata .= preg_replace("/\\n/", "&br;", $vars[$entry_name]) . "|"; } else { $postdata .= $cell . "|"; } @@ -82,11 +82,14 @@ $s_page = htmlsc($page); $string = << - .style_td input { + .style_td textarea { + resize: none; + overflow: hidden; font-size: 100%; background: linear-gradient(#6af 0%, #fef 10%, #dde 85%, #fff 100%); } +