Merge branch 'QA_4_3'
This commit is contained in:
commit
efdda87f28
@ -1913,7 +1913,11 @@ class PMA_Util
|
||||
|
||||
$url_parts = parse_url($url);
|
||||
|
||||
return explode($separator, $url_parts['query']);
|
||||
if (! empty($url_parts['query'])) {
|
||||
return explode($separator, $url_parts['query']);
|
||||
} else {
|
||||
return array();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user