<br><br><div class="gmail_quote">On Mon, Mar 19, 2012 at 11:53 PM, Dieter Adriaenssens <span dir="ltr"><<a href="mailto:dieter.adriaenssens@gmail.com">dieter.adriaenssens@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi all,<br>
<br>
As a reminder :<br>
<br>
phpMyAdmin version 3.5.0 is to be released soon. This means that no<br>
commits should be done to the QA_3_5 branch, unless they solve a<br>
critical bug that should be solved before 3.5.0 is released.<br>
Because we are so close to the final release, please, only commit<br>
changes to the QA_3_5 branch after discussing this on the mailing list.<br>
<br></blockquote><div> Hi all,</div><div><br></div><div>I came across this bug [1], which is present in QA_3_5 and master branches. While I'm not sure whether this is critical the cause and the solution is simple. I've included the diff of the solution at the end of this mail. </div>
<div>Good to go into QA_3_5 ?</div><div><br></div></div>-- <br>Thanks and Regards,<div><br></div><div>Madhura Jayaratne<br><div><br></div></div>[1] 
<a href="https://sourceforge.net/tracker/?func=detail&aid=3510784&group_id=23067&atid=377408">https://sourceforge.net/tracker/?func=detail&aid=3510784&group_id=23067&atid=377408</a><div><br></div>
<div><div>diff --git a/libraries/common.lib.php b/libraries/common.lib.php</div><div>index e35f405..f40f61b 100644</div><div>--- a/libraries/common.lib.php</div><div>+++ b/libraries/common.lib.php</div><div>@@ -1120,6 +1120,7 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view</div>
<div>             ) {</div><div>                 $query_base = $analyzed_display_query[0]['section_before_limit']</div><div>                     . "\n" . $GLOBALS['sql_order_to_append']</div><div>
+                    . $analyzed_display_query[0]['limit_clause'] . ' '</div><div>                     . $analyzed_display_query[0]['section_after_limit'];</div><div> </div><div>                 // Need to reparse query</div>
<div>diff --git a/sql.php b/sql.php</div><div>index 432fb14..952d7eb 100644</div><div>--- a/sql.php</div><div>+++ b/sql.php</div><div>@@ -467,7 +467,7 @@ if ($GLOBALS['cfg']['RememberSorting']</div><div>             // retrieve the remembered sorting order for current table</div>
<div>             $sql_order_to_append = ' ORDER BY ' . $sorted_col . ' ';</div><div>             $full_sql_query = $analyzed_sql[0]['section_before_limit'] . $sql_order_to_append</div><div>-                . $analyzed_sql[0]['section_after_limit'];</div>
<div>+                . $analyzed_sql[0]['limit_clause'] . ' ' . $analyzed_sql[0]['section_after_limit'];</div><div> </div><div>             // update the $analyzed_sql</div><div>             $analyzed_sql[0]['section_before_limit'] .= $sql_order_to_append;</div>
<div>-- </div></div>