Hardcoded language string

Issue #650 resolved
Frank Joris created an issue

Frontend file: views/events/tmpl/timeline.php Line: <a href="<?php echo($item->event_link); ?>" class="cd-read-more">Read more</a>

Replace by:

<a href="<?php echo($item->event_link); ?>" class="cd-read-more"><?php echo JText::_('COM_ALLEVENTS_READMORE'); ?></a>

Add to backend language file:

COM_ALLEVENTS_READMORE = "Read more"

Comments (2)

  1. Log in to comment