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/sqlbox_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sqlbox/sqlbox_form.php') diff --git a/sqlbox/sqlbox_form.php b/sqlbox/sqlbox_form.php index 19a5e93..e193c7a 100644 --- a/sqlbox/sqlbox_form.php +++ b/sqlbox/sqlbox_form.php @@ -9,7 +9,7 @@ class mod_sqlbox_form extends moodleform { public function definition() { $mform = &$this->_form; $mform->addElement('header', 'sqlbox_general', 'SQLBox'); - $mform->addElement('text', 'sqlbox_query', 'SQL Query', 'size="50"'); + $mform->addElement('textarea', 'sqlbox_query', 'SQL Query', 'rows="15" cols="60"'); $mform->addElement('submit', 'sqlbox_button', 'Submit'); } -- cgit