简体   繁体   中英

error in /modules/mod_feed/helper.php

I am getting a warning after PHP update

Warning: Creating default object from empty value in /modules/mod_feed/helper.php on line 42

I had faced this issue before and at that time I have used $v=new stdclass(); . But the issue was not in a Joomla site. Now the same issue with a joomla site. My code link is here

What I should change in this file? Any thoughts?

You also need

$feed->image = new stdclass;

before line 42. This is an E_STRICT level warning. These are designed to alert you to code smells (like auto-creating arrays / objects).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM