Ticket #16472: 16472.patch
| File 16472.patch, 425 bytes (added by hakre, 2 years ago) |
|---|
-
wp-includes/query.php
1837 1837 * @return mixed 1838 1838 */ 1839 1839 function get($query_var) { 1840 if ( isset($this->query_vars[$query_var]) )1840 if ( array_key_exists($query_var, $this->query_vars) ) 1841 1841 return $this->query_vars[$query_var]; 1842 1842 1843 1843 return '';