How to fix this notice ( without change the Error Reporting parameters in config )
for example for Category list
Notice: Undefined property: stdClass::$language in C:\wamp\www\templates\gk_news2\html\com_content\category\default_articles.php on line 100
This line :
- Code: Select all
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language)); ?>">
In Joomla 2.5 this line doesn’t cause notice, but in Joomla 3 yes
I tried to add
- Code: Select all
“$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language));”
But nothing change
If I replace by this
- Code: Select all
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid)); ?>">
The error disappear but, I 'm afraid that could make a problem for the language ?
Can you help me
Thank you