diff options
author | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-20 15:20:44 +0100 |
---|---|---|
committer | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-20 15:20:44 +0100 |
commit | 13acd7742a9287249c1f0de15435e663f9c8cc28 (patch) | |
tree | 7af8bf6ee91bc9ada529c364ca174f66ee29dbe2 /sqlbox | |
parent | 9d50e1da6601bee2582f76ad850eaba0d5d0b9c0 (diff) | |
download | sqltutor-plugin-13acd7742a9287249c1f0de15435e663f9c8cc28.tar.gz sqltutor-plugin-13acd7742a9287249c1f0de15435e663f9c8cc28.tar.bz2 sqltutor-plugin-13acd7742a9287249c1f0de15435e663f9c8cc28.zip |
Fix multiline string.
Diffstat (limited to 'sqlbox')
-rw-r--r-- | sqlbox/view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlbox/view.php b/sqlbox/view.php index 4580f16..e2330e1 100644 --- a/sqlbox/view.php +++ b/sqlbox/view.php @@ -74,7 +74,7 @@ if ($sqlbox->intro) { // Conditions to show the intro can change to look for own // Replace the following lines with you own code echo $OUTPUT->heading('Yay! It works!'); -$form = <<EOF +$form = <<<EOF <input id="sqlstr" type="text" /> <input type="submit" value="Querry" /> EOF; |