Skip to content

Commit

Permalink
Fix bug #3585523 [interface] Inline query editing broken after row up…
Browse files Browse the repository at this point in the history
…date
  • Loading branch information
mynetx committed Nov 11, 2012
1 parent c4546b9 commit b98cdae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -10,6 +10,7 @@ phpMyAdmin - ChangeLog
- bug #3578776 [search] Editing SQL not possible when no records found
- bug #3571970 [interface] Display chart and number of rows to plot
- bug #3582631 [core] Wrong redirect url caused cookies error with ForceSSL
- bug #3585523 [interface] Inline query editing broken after row update

3.5.3.0 (2012-10-08)
- bug #3539044 [interface] Browse mode "Show" button gives blank page if no results anymore
Expand Down
4 changes: 4 additions & 0 deletions tbl_replace.php
Expand Up @@ -41,6 +41,10 @@
$GLOBALS['js_include'][] = 'makegrid.js';
// Needed for generation of Inline Edit anchors
$GLOBALS['js_include'][] = 'sql.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';

if (isset($_REQUEST['insert_rows']) && is_numeric($_REQUEST['insert_rows']) && $_REQUEST['insert_rows'] != $cfg['InsertRows']) {
$cfg['InsertRows'] = $_REQUEST['insert_rows'];
Expand Down

2 comments on commit b98cdae

@roccivic
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You had forgotten to merge QA_3_5 into master, Done for you in 6b7d887

@ZweiSteinSoft
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@roccivic Thanks.

Please sign in to comment.