From e1c909326f1b333798871e2617997dd4de492caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 24 Nov 2008 11:11:41 +0000 Subject: [PATCH] Convert comments to doc block. --- libraries/sqlparser.lib.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php index e9e4f1976..8d8babd7f 100644 --- a/libraries/sqlparser.lib.php +++ b/libraries/sqlparser.lib.php @@ -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;