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
12 years 3 weeks 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.
12 years 3 weeks ago #2 by erwinschro

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

That fixed the issue

Thank you
12 years 3 weeks ago #3 by rightinfront

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

alright...that's good to hear
12 years 3 weeks ago #4 by erwinschro

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

Powered by Kunena Forum