PMA_DBI_next_result --> PMA_DBI_nextResult

This commit is contained in:
Kasun Chathuranga 2013-05-04 08:35:16 +05:30
parent f92627ed88
commit 5d9f92f7bc
6 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -448,7 +448,7 @@ function PMA_DBI_moreResults()
*
* @return boo false
*/
function PMA_DBI_next_result()
function PMA_DBI_nextResult()
{
return false;
}

View File

@ -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

View File

@ -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'])) {

View File

@ -1417,7 +1417,7 @@ function PMA_RTN_handleExecute()
PMA_DBI_freeResult($result);
} while (PMA_DBI_next_result());
} while (PMA_DBI_nextResult());
$output .= "</fieldset>";

View File

@ -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;
}