From 4f263a19224512b1bf6ed787f29afffecf1eb330 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 29 Jan 2013 13:02:33 +0100 Subject: Use a textare for query input --- sqlbox/mod_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sqlbox/mod_form.php') diff --git a/sqlbox/mod_form.php b/sqlbox/mod_form.php index c59fba7..bff0db3 100644 --- a/sqlbox/mod_form.php +++ b/sqlbox/mod_form.php @@ -61,7 +61,7 @@ class mod_sqlbox_mod_form extends moodleform_mod { // Adding the standard "intro" and "introformat" fields $this->add_intro_editor(); - $mform->addElement('text', 'query', 'SQL Query', 'size="50"'); + $mform->addElement('textarea', 'query', 'SQL Query', 'rows="15" cols="60"'); /* //------------------------------------------------------------------------------- // Adding the rest of sqlbox settings, spreeading all them into this fieldset -- cgit