Closed bobbingwide closed 8 years ago
Sometimes, during shutdown processing, the bw_trace_c3() function invokes c() when the function doesn't exist. This produces unwanted PHP messages.
shutdown
bw_trace_c3()
c()
Since this only happens in error situations we might as well just wrap the call to c() in an if function_exists( "c") test.
if function_exists( "c")
Sometimes, during
shutdown
processing, thebw_trace_c3()
function invokesc()
when the function doesn't exist. This produces unwanted PHP messages.Proposal
Since this only happens in error situations we might as well just wrap the call to c() in an
if function_exists( "c")
test.