This commit is contained in:
Marc Delisle
2005-07-16 12:20:59 +00:00
parent 7716eeb3ad
commit e507e893fa

View File

@@ -362,7 +362,7 @@ function PMA_STR_isSqlIdentifier($c, $dot_is_valid = FALSE)
*/ */
function PMA_STR_binarySearchInArr($str, $arr, $arrsize) function PMA_STR_binarySearchInArr($str, $arr, $arrsize)
{ {
// $arr NUST be sorted, due to binary search // $arr MUST be sorted, due to binary search
$top = $arrsize - 1; $top = $arrsize - 1;
$bottom = 0; $bottom = 0;
$found = FALSE; $found = FALSE;