From 403fd468182086273149b24e47f91b525772b565 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Wed, 25 Apr 2012 21:05:41 +0100 Subject: [PATCH] Fixed bug #3521416 - JS error when editing index --- ChangeLog | 1 + sql.php | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7ca25a8910..5bc0d72639 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog ====================== 3.5.2.0 (not yet released) +- bug #3521416 [interface] JS error when editing index 3.5.1.0 (not yet released) - bug #3510784 [edit] Limit clause ignored when sort order is remembered diff --git a/sql.php b/sql.php index c4243d24ea..f60c66a45e 100644 --- a/sql.php +++ b/sql.php @@ -19,6 +19,7 @@ $GLOBALS['js_include'][] = 'jquery/timepicker.js'; $GLOBALS['js_include'][] = 'tbl_change.js'; // the next one needed because sql.php may do a "goto" to tbl_structure.php $GLOBALS['js_include'][] = 'tbl_structure.js'; +$GLOBALS['js_include'][] = 'indexes.js'; $GLOBALS['js_include'][] = 'gis_data_editor.js'; $GLOBALS['js_include'][] = 'codemirror/lib/codemirror.js'; $GLOBALS['js_include'][] = 'codemirror/mode/mysql/mysql.js';