Changeset 4991

Show
Ignore:
Timestamp:
03/07/07 05:37:22 (1 year ago)
Author:
markjaquith
Message:

Cast query vars to strings. fixes #3891

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.1/wp-includes/classes.php

    r4779 r4991  
    149149            elseif (!empty($perma_query_vars[$wpvar])) 
    150150                $this->query_vars[$wpvar] = $perma_query_vars[$wpvar]; 
     151 
     152            $this->query_vars[$wpvar] = (string) $this->query_vars[$wpvar]; 
    151153        } 
    152154