Changeset 4753
- Timestamp:
- 01/16/2007 07:05:01 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/classes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r4723 r4753 225 225 if ( '' != $this->query_vars[$wpvar] ) { 226 226 $this->query_string .= (strlen($this->query_string) < 1) ? '' : '&'; 227 if ( !is_scalar($this->query_vars[$wpvar]) ) // Discard non-scalars. 228 continue; 227 229 $this->query_string .= $wpvar . '=' . rawurlencode($this->query_vars[$wpvar]); 228 230 }
Note: See TracChangeset
for help on using the changeset viewer.