Make sure extra_query_vars is an array instead of an empty string to avoid weird bug that can cause all query vars to be stomped in certain envs.

git-svn-id: https://develop.svn.wordpress.org/trunk@2824 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-08-30 19:01:45 +00:00
parent 4680f618c3
commit 514c36a3bc
1 changed files with 3 additions and 1 deletions

View File

@ -1323,6 +1323,8 @@ class WP {
if (! empty($extra_query_vars))
parse_str($extra_query_vars, $extra_query_vars);
else
$extra_query_vars = array();
// Process PATH_INFO, REQUEST_URI, and 404 for permalinks.
if ((isset($_GET['error']) && $_GET['error'] == '404') ||
@ -1537,4 +1539,4 @@ class WP {
}
}
?>
?>