Details
Description
I wondered why I was getting the PHP Warning about the 'allow_call_time_pass_reference' use being deprecated. Turns out
that the expliit test for a setting to 0, will not always work. init_get() is documented to return '0' or ''. The present code only
tests for '0',and will thus not warn invokers in all unsupported instances. I attach a context diff of a patch to fix this.
Fixed in 1.8, 1.9 and HEAD, thanks James, feel free to reopen if any problem arises.