diff --git a/ChangeLog b/ChangeLog index aeb5c425fa..caad01a2de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog 3.5.4.0 (not yet released) - bug #3570212 [edit] uuid_short() is a no-arguments function +- bug #3569577 [edit] Add routine parameter headers not valid for "function" 3.5.3.0 (not yet released) - bug #3539044 [interface] Browse mode "Show" button gives blank page if no results anymore diff --git a/js/rte/routines.js b/js/rte/routines.js index 27c2aea255..5c6dd0d260 100644 --- a/js/rte/routines.js +++ b/js/rte/routines.js @@ -295,7 +295,7 @@ $(document).ready(function () { * fields are shown in the editor when changing the routine type */ $('select[name=item_type]').live('change', function () { - $('tr.routine_return_row, td.routine_direction_cell').toggle(); + $('tr.routine_return_row, td.routine_direction_cell, th.routine_direction_cell').toggle(); }); // end $.live() /**