Jump to content

Recommended Posts

Posted

hello;

i have this error

 

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; RSSFeed has a deprecated constructor in xxxxxx\core\common\RSSFeed.class.php on line 20

 

Can you help me solve this?

Thanks

Posted

If you do want to fix this, you could try going into core/common/RSSFeed.class.php and replace this on line 23

public function RSSFeed($title = '', $url = '', $description = '') {

With this

public function __construct($title = '', $url = '', $description = '') {

PHP >= 7.0 has this deprecated (and phpvms 5.5.x was not made for 7.0 yet).

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...