fix coding style : opening parenthesis for function declaration should be on a new line

This commit is contained in:
Dieter Adriaenssens 2013-03-14 11:43:19 +01:00
parent 4787c4d6fe
commit c69adf736e

View File

@ -2897,7 +2897,8 @@ function PMA_SQP_formatNone($arr)
*
* @return boolean whether true or false
*/
function PMA_SQP_isKeyWord($column) {
function PMA_SQP_isKeyWord($column)
{
global $PMA_SQPdata_forbidden_word;
return in_array(strtoupper($column), $PMA_SQPdata_forbidden_word);
}