Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-04-13 03:43:32 +0400
committerJo Michael <me@mynetx.net>2012-04-13 03:43:32 +0400
commit8744f8cf66e57963c74bfc7bca800667ba793554 (patch)
treecb742feb6be3101a2b8a6b42e8b6364875dceac4 /db_sql.php
parent6557b71b88fe19997844169854d34af73a02c70f (diff)
+ rfe #3517354 [interface] Allow disabling CodeMirror with $cfg['CodemirrorEnable'] = false
Diffstat (limited to 'db_sql.php')
-rw-r--r--db_sql.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/db_sql.php b/db_sql.php
index 23c1c64162..ed4c47b19b 100644
--- a/db_sql.php
+++ b/db_sql.php
@@ -16,8 +16,11 @@ require_once 'libraries/common.inc.php';
$GLOBALS['js_include'][] = 'functions.js';
$GLOBALS['js_include'][] = 'makegrid.js';
$GLOBALS['js_include'][] = 'sql.js';
-$GLOBALS['js_include'][] = 'codemirror/lib/codemirror.js';
-$GLOBALS['js_include'][] = 'codemirror/mode/mysql/mysql.js';
+
+if ($GLOBALS['cfg']['CodemirrorEnable']) {
+ $GLOBALS['js_include'][] = 'codemirror/lib/codemirror.js';
+ $GLOBALS['js_include'][] = 'codemirror/mode/mysql/mysql.js';
+}
require 'libraries/db_common.inc.php';
require_once 'libraries/sql_query_form.lib.php';