[Bb-trac] Re: [bbPress] #558: themes.php logic fails on windows server

bbPress bb-trac at lists.bbpress.org
Sun Jun 3 23:54:59 GMT 2007


#558: themes.php logic fails on windows server
-----------------------+----------------------------------------------------
 Reporter:  so1o       |        Owner:  so1o    
     Type:  defect     |       Status:  reopened
 Priority:  high       |    Milestone:  0.80    
Component:  Back-end   |      Version:          
 Severity:  critical   |   Resolution:          
 Keywords:  has-patch  |  
-----------------------+----------------------------------------------------
Comment (by so1o):

 source:trunk/bb-includes/wp-functions.php


 {{{
 var_dump($query);
 parse_str($query, $qs);
 if ( get_magic_quotes_gpc() )
         $qs = stripslashes_deep($qs);
 var_dump($qs);
 }}}

 shows

 {{{
 string(65) "theme=J%3A%5Cdev%5Cwordpress%5Cforums%2Fbb-
 templates%2Fkakumei%2F"
 array(1) {
   ["theme"]=>
   string(54) "J:\\dev\\wordpress\\forums/bb-templates/kakumei/"
 }
 }}}

 shouldn't it be

 {{{
 string(65) "theme=J%3A%5Cdev%5Cwordpress%5Cforums%2Fbb-
 templates%2Fkakumei%2F"
 array(1) {
   ["theme"]=>
   string(54) "J:\dev\wordpress\forums/bb-templates/kakumei/"
 }
 }}}

 any insight any one?

-- 
Ticket URL: <http://trac.bbpress.org/ticket/558#comment:8>
bbPress <http://bbpress.org/>
Innovative forum development


More information about the Bb-trac mailing list