diff --git a/ChangeLog b/ChangeLog index 788b91c622..228bafff98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/view_operations.php b/view_operations.php index 10079dee83..f408c9d72a 100644 --- a/view_operations.php +++ b/view_operations.php @@ -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 */