
minutiaeman at st-minutiae
Mar 27, 2004, 5:27 PM
Post #7 of 7
(212 views)
Permalink
|
On Mar 27, 2004, at 6:35 PM, Brion Vibber wrote: > Now, on my test box, with magic quotes on, the apostrophe title does > with with index.php/Apostrophe%27s after making the hack fix I > described earlier: > > if( isset( $_SERVER['PATH_INFO'] ) ) { > $title = stripslashes( substr( $_SERVER['PATH_INFO'], 1 ) ); > } else { > $title = stripslashes( $_REQUEST['title'] ); > } > > (adding the two stripslashes() calls) Make sure they're both in there. *smacks head* When I added that fix the first time, I only added the SECOND "stripslashes" incidence, and not the first. Stupid, stupid, stupid! Sorry to cause confusion. Dan
|