PMA_DBI_next_result --> PMA_DBI_nextResult
This commit is contained in:
parent
f92627ed88
commit
5d9f92f7bc
@ -277,7 +277,7 @@ function PMA_DBI_moreResults()
|
||||
*
|
||||
* @return bool false
|
||||
*/
|
||||
function PMA_DBI_next_result()
|
||||
function PMA_DBI_nextResult()
|
||||
{
|
||||
// N.B.: PHP's 'mysql' extension does not support
|
||||
// multi_queries so this function will always
|
||||
|
||||
@ -448,7 +448,7 @@ function PMA_DBI_moreResults()
|
||||
*
|
||||
* @return boo false
|
||||
*/
|
||||
function PMA_DBI_next_result()
|
||||
function PMA_DBI_nextResult()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -302,7 +302,7 @@ function PMA_DBI_moreResults()
|
||||
*
|
||||
* @return boo false
|
||||
*/
|
||||
function PMA_DBI_next_result()
|
||||
function PMA_DBI_nextResult()
|
||||
{
|
||||
// N.B.: PHP's 'mysql' extension does not support
|
||||
// multi_queries so this function will always
|
||||
|
||||
@ -369,7 +369,7 @@ function PMA_DBI_moreResults($link = null)
|
||||
*
|
||||
* @return bool true or false
|
||||
*/
|
||||
function PMA_DBI_next_result($link = null)
|
||||
function PMA_DBI_nextResult($link = null)
|
||||
{
|
||||
if (empty($link)) {
|
||||
if (isset($GLOBALS['userlink'])) {
|
||||
|
||||
@ -1417,7 +1417,7 @@ function PMA_RTN_handleExecute()
|
||||
|
||||
PMA_DBI_freeResult($result);
|
||||
|
||||
} while (PMA_DBI_next_result());
|
||||
} while (PMA_DBI_nextResult());
|
||||
|
||||
$output .= "</fieldset>";
|
||||
|
||||
|
||||
4
sql.php
4
sql.php
@ -643,7 +643,7 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) {
|
||||
if (! PMA_DBI_moreResults()) {
|
||||
break;
|
||||
}
|
||||
} while (PMA_DBI_next_result());
|
||||
} while (PMA_DBI_nextResult());
|
||||
|
||||
$is_procedure = false;
|
||||
if (stripos($full_sql_query, 'call') !== false) {
|
||||
@ -1613,7 +1613,7 @@ function getTableHtmlForMultipleQueries(
|
||||
|
||||
$sql_no++;
|
||||
|
||||
} while (PMA_DBI_moreResults() && PMA_DBI_next_result());
|
||||
} while (PMA_DBI_moreResults() && PMA_DBI_nextResult());
|
||||
|
||||
return $table_html;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user