summaryrefslogtreecommitdiff
path: root/sqlbox/sqlbox_form.php
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2012-11-21 11:48:17 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2012-11-21 11:48:17 +0100
commit854159ddbf2c284118a83495e215a178f2bf39e9 (patch)
treeb0428e3db3975a48f2b9cc0cc5f965c89d0c4b19 /sqlbox/sqlbox_form.php
parent93269a59dcc12a69969fdee366cc491fd8c4c35c (diff)
downloadsqltutor-plugin-854159ddbf2c284118a83495e215a178f2bf39e9.tar.gz
sqltutor-plugin-854159ddbf2c284118a83495e215a178f2bf39e9.tar.bz2
sqltutor-plugin-854159ddbf2c284118a83495e215a178f2bf39e9.zip
sqlbox: s/Query/SQL Query/
Diffstat (limited to 'sqlbox/sqlbox_form.php')
-rw-r--r--sqlbox/sqlbox_form.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlbox/sqlbox_form.php b/sqlbox/sqlbox_form.php
index eb88b6f..c91888c 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', 'general', 'SQLBox');
- $mform->addElement('text', 'query', 'Query', 'size="50"');
+ $mform->addElement('text', 'query', 'SQL Query', 'size="50"');
$mform->addElement('submit', 'button', 'Submit');
}
}