Convert comments to doc block.
This commit is contained in:
@@ -56,15 +56,21 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
}
|
||||
|
||||
if (!defined('DEBUG_TIMING')) {
|
||||
// currently we don't need the $pos (token position in query)
|
||||
// for other purposes than LIMIT clause verification,
|
||||
// so many calls to this function do not include the 4th parameter
|
||||
/**
|
||||
* currently we don't need the $pos (token position in query)
|
||||
* for other purposes than LIMIT clause verification,
|
||||
* so many calls to this function do not include the 4th parameter
|
||||
*/
|
||||
function PMA_SQP_arrayAdd(&$arr, $type, $data, &$arrsize, $pos = 0)
|
||||
{
|
||||
$arr[] = array('type' => $type, 'data' => $data, 'pos' => $pos);
|
||||
$arrsize++;
|
||||
} // end of the "PMA_SQP_arrayAdd()" function
|
||||
} else {
|
||||
/**
|
||||
* This is debug variant of above.
|
||||
* @ignore
|
||||
*/
|
||||
function PMA_SQP_arrayAdd(&$arr, $type, $data, &$arrsize, $pos = 0)
|
||||
{
|
||||
global $timer;
|
||||
|
Reference in New Issue
Block a user