* @param string
*/
function sqlSubmit(form, root) {
- if (encodeURIComponent(form['query'].value).length < 2e3) {
+ if (encodeURIComponent(form['query'].value).length < 500) {
form.action = root
+ '&sql=' + encodeURIComponent(form['query'].value)
+ (form['limit'].value ? '&limit=' + +form['limit'].value : '')
Align numbers right (bug #912)
Display comment in title of field
Remember export setting at SQL command
+Shorten queries saved from SQL command to URL (bug #917)
SQL textarea: Open help on Ctrl+click
Security: Disallow writing temporary files to symlinks (bug SF-855)
MariaDB: Display MariaDB instead of MySQL