From a278371368e6ece009bd62504788898ae256d868 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Fri, 25 Jan 2013 09:25:23 +0100 Subject: Fix coding style --- sqlbox/sqlbox_form.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sqlbox/sqlbox_form.php') diff --git a/sqlbox/sqlbox_form.php b/sqlbox/sqlbox_form.php index 5360b59..19a5e93 100644 --- a/sqlbox/sqlbox_form.php +++ b/sqlbox/sqlbox_form.php @@ -8,9 +8,9 @@ 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('submit', 'sqlbox_button', 'Submit'); + $mform->addElement('header', 'sqlbox_general', 'SQLBox'); + $mform->addElement('text', 'sqlbox_query', 'SQL Query', 'size="50"'); + $mform->addElement('submit', 'sqlbox_button', 'Submit'); } public function set_query($query) { -- cgit