Error Joomla 2.5.14

Latestnews + comes up with errors on Joomla 2.5.14


Notice: Trying to get property of non-object in /modules/mod_latestnewsplusdate/mod_latestnewsplusdate.php on line 57

Notice: Trying to get property of non-object in /modules/mod_latestnewsplusdate/mod_latestnewsplusdate.php on line 58

Notice: Trying to get property of non-object in /modules/mod_latestnewsplusdate/tmpl/default.php on line 25

Notice: Trying to get property of non-object in /modules/mod_latestnewsplusdate/tmpl/default.php on line 26

Any help would be appreciated

Kevin
11 years 4 months ago #1 by rightinfront

Please Log in or Create an account to join the conversation.

You can try to edit that lines 57-58 in /modules/mod_latestnewsplusdate/mod_latestnewsplusdate.php
$introImage = htmlspecialchars( $images->image_intro );
$fulltextImage = htmlspecialchars( $images->image_fulltext );

to be
if(!is_null($images)) {
	$introImage = htmlspecialchars($images->image_intro);
	$fulltextImage = htmlspecialchars($images->image_fulltext);
}

do the same for the default.php file like above and see if the warning/notice is gone or not.
11 years 4 months ago #2 by erwinschro

Please Log in or Create an account to join the conversation.

That fixed the issue

Thank you
11 years 4 months ago #3 by rightinfront

Please Log in or Create an account to join the conversation.

alright...that's good to hear
11 years 4 months ago #4 by erwinschro

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum