Hi,
migrating my code from 3.0.9 to new 3.0.18 gave me some weird behavior:
php automaticaly decode var: script?var=%23 results in $var=#. I'd like to keep it this way and not to rewrite all my script to add an url_encode() call.
change in regex: I used to protect '>' with ereg (i.e. >). This pattern doesn't work anymore, I have to remove the '\'. My old php was build with 'bundled' regex. As the new one is the standard redhat package compiled with 'system' regex, I build a new one but this doesn't solve this problem.
Thank for your help
Might try building from sources?
Or, you might try getting familiar with sed if you are at a *nix prompt...
-Ben