diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-01-30 15:31:25 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-01-30 15:31:25 +0100 |
commit | 12e2a99dd3eabe8ed613c82ac04626118a05f17f (patch) | |
tree | 1d87dc451d842e43d042ad7cb8c45917814d6cc8 /sqlbox | |
parent | d071d3d14eea644296ce98ee753b3f2fa5c5c4ec (diff) | |
download | sqltutor-plugin-12e2a99dd3eabe8ed613c82ac04626118a05f17f.tar.gz sqltutor-plugin-12e2a99dd3eabe8ed613c82ac04626118a05f17f.tar.bz2 sqltutor-plugin-12e2a99dd3eabe8ed613c82ac04626118a05f17f.zip |
Use Query as label instad of Submit
Diffstat (limited to 'sqlbox')
-rw-r--r-- | sqlbox/sqlbox_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlbox/sqlbox_form.php b/sqlbox/sqlbox_form.php index e193c7a..c6f81f0 100644 --- a/sqlbox/sqlbox_form.php +++ b/sqlbox/sqlbox_form.php @@ -10,7 +10,7 @@ class mod_sqlbox_form extends moodleform { $mform = &$this->_form; $mform->addElement('header', 'sqlbox_general', 'SQLBox'); $mform->addElement('textarea', 'sqlbox_query', 'SQL Query', 'rows="15" cols="60"'); - $mform->addElement('submit', 'sqlbox_button', 'Submit'); + $mform->addElement('submit', 'sqlbox_button', 'Query'); } public function set_query($query) { |