Coding style fixes for #13892

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2018-02-20 05:42:38 +01:00
parent 68ece7b2fc
commit e991d18654

View File

@ -1202,7 +1202,7 @@ class Routines
}
if (! empty($_REQUEST['item_param_opts_text'][$i])) {
if ($dbi->types->getTypeClass($item_param_type[$i]) == 'CHAR') {
if(!in_array($item_param_type[$i],array("VARBINARY","BINARY"))){
if(! in_array($item_param_type[$i], array('VARBINARY', 'BINARY'))) {
$params .= ' CHARSET '
. mb_strtolower(
$_REQUEST['item_param_opts_text'][$i]