Changeset 4826
- Timestamp:
- 01/28/2007 10:30:39 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-includes/classes.php
r4715 r4826 1664 1664 if (isset($this->query_vars[$wpvar]) && '' != $this->query_vars[$wpvar]) { 1665 1665 $this->query_string .= (strlen($this->query_string) < 1) ? '' : '&'; 1666 if ( !is_scalar($this->query_vars[$wpvar]) ) // Discard non-scalars. 1667 continue; 1666 1668 $this->query_string .= $wpvar . '=' . rawurlencode($this->query_vars[$wpvar]); 1667 1669 }
Note: See TracChangeset
for help on using the changeset viewer.