Merge branch 'QA_4_6'

This commit is contained in:
Madhura Jayaratne 2016-02-16 19:54:33 +11:00
commit 18587cf21c
2 changed files with 9 additions and 0 deletions

View File

@ -80,6 +80,7 @@ phpMyAdmin - ChangeLog
- issue #11959 Fix javascript error in setup
- issue #11964 Undefined index: TABLE_COMMENT in database structure page
- issue #11967 Fix PHP error on loading invalid XML or ODS file
- issue #11969 Missing confirmation while dropping a view in view_operations.php
4.5.4.1 (2016-01-29)
- issue #11892 Error with PMA 4.4.15.3

View File

@ -19,6 +19,14 @@ $pma_table = new Table($GLOBALS['table'], $GLOBALS['db']);
*/
require_once 'libraries/operations.lib.php';
/**
* Load JavaScript files
*/
$response = PMA_Response::getInstance();
$header = $response->getHeader();
$scripts = $header->getScripts();
$scripts->addFile('tbl_operations.js');
/**
* Runs common work
*/