Hi gang,
We have a site that is using short open tags all over the place. I did a global search and replace using the regex "<\?(?php)" to change them to "<?php" tags, which worked just fine.
I then went into my php.ini and set short_open_tags to Off. The site would not load properly. I discovered that the reason was the use of the "<?=" tag, which is all over the place.
Is there a way to use the "<?=" with short_open_tags turned off? Or is there a way to use "<?=" in the "long" form so that it works with the enforcement of "<?php" as the open tag?
Thanks!
Chris