Items not set messages with debugging turned on
-
I’m seeing two issues, if the site has debugging turned on, as it was on a test site I’m working on:
Line 78
if ( $this->CFG['sbrssfeedcfg_info_version'] == '' ) {
changed to check if it’s empty instead of containing a blank value
if ( empty( $this->CFG['sbrssfeedcfg_info_version'] ) ) {
Line 99
if ( $this->CFG['sbrssfeedcfg_inrssAd_inrssAd_enabled'] == 1 )
changed to make sure it’s not empty and set to 1
if ( !empty( $this->CFG['sbrssfeedcfg_inrssAd_inrssAd_enabled'] ) && $this->CFG['sbrssfeedcfg_inrssAd_inrssAd_enabled'] == 1 )
- The topic ‘Items not set messages with debugging turned on’ is closed to new replies.