From: vyshane Date: Fri, 17 Mar 2006 04:51:14 +0000 (+0000) Subject: Fixed php notice X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=663b45a86dccc034e2663e5f67f603455ee26572;p=moodle.git Fixed php notice --- diff --git a/mod/data/field/textarea/field.class.php b/mod/data/field/textarea/field.class.php index 7416108d13..160b47bf88 100755 --- a/mod/data/field/textarea/field.class.php +++ b/mod/data/field/textarea/field.class.php @@ -105,7 +105,7 @@ class data_field_textarea extends data_field_base { function gen_textarea($usehtmleditor, $name, $cols=65, $rows=10, $value='') { global $CFG, $course; - return print_textarea($usehtmleditor, $rows, $cols, '', '', $name, $value='', $courseid, true); + return print_textarea($usehtmleditor, $rows, $cols, '', '', $name, $value, '', true); }