From 931d5119f586f2d18ab9c051c7e16d92ba21f496 Mon Sep 17 00:00:00 2001 From: moodler Date: Wed, 28 Apr 2004 02:57:37 +0000 Subject: [PATCH] Minimum rows can be smaller --- lib/weblib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/weblib.php b/lib/weblib.php index 8d9110c7f3..f240f25e16 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -1593,8 +1593,8 @@ function print_textarea($usehtmleditor, $rows, $cols, $width, $height, $name, $v echo "\n"; echo "\n"; - if ($rows < 20) { - $rows = 20; + if ($rows < 10) { + $rows = 10; } if ($cols < 65) { $cols = 65; -- 2.39.5