From 9fe4cbe9946c4b0b2d972c82430bf01b5650a5b0 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sun, 14 Aug 2016 21:36:29 +0530 Subject: [PATCH] Allow resizing only from bottom of the SQL Editors Also affects SQL Editors in Inline editing, Add/Edit Routines, Exporting User privileges etc. ChangeLog Entry for #12346 Fix #12346 Signed-off-by: Deven Bansod --- ChangeLog | 1 + js/functions.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e4f820131b..2e73d97104 100644 --- a/ChangeLog +++ b/ChangeLog @@ -22,6 +22,7 @@ phpMyAdmin - ChangeLog - issue #12423 Fixed replication status in database listing - issue #12433 Copy table with prefix does not copy the indexes - issue #12375 Search in database: Window content is not scrolling down when clicking first time on Browse link +- issue #12346 SQL Editor textareas can have their size increased from the top, distorting the page view 4.6.3 (2016-06-23) - issue #12249 Fixed cookie path on Windows diff --git a/js/functions.js b/js/functions.js index 3e36249f08..cb5e556b22 100644 --- a/js/functions.js +++ b/js/functions.js @@ -253,7 +253,7 @@ function PMA_getSQLEditor($textarea, options, resize, lintOptions) { } var handles = ''; if (resize == 'vertical') { - handles = 'n, s'; + handles = 's'; } if (resize == 'both') { handles = 'all';