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 /tbl_export.php
parent6557b71b88fe19997844169854d34af73a02c70f (diff)
+ rfe #3517354 [interface] Allow disabling CodeMirror with $cfg['CodemirrorEnable'] = false
Diffstat (limited to 'tbl_export.php')
-rw-r--r--tbl_export.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/tbl_export.php b/tbl_export.php
index a22fd023ac..f9722c4fc2 100644
--- a/tbl_export.php
+++ b/tbl_export.php
@@ -11,8 +11,11 @@
require_once 'libraries/common.inc.php';
$GLOBALS['js_include'][] = 'export.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';
+}
/**
* Gets tables informations and displays top links