From: moodler Date: Wed, 28 Apr 2004 02:57:37 +0000 (+0000) Subject: Minimum rows can be smaller X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=931d5119f586f2d18ab9c051c7e16d92ba21f496;p=moodle.git Minimum rows can be smaller --- 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;