English date instead of Dutch on homepage

GK User
Mon May 03, 2010 10:04 am
Hey everyone!

For my homepage (http://www.madonna.nl/site/index.php) I'm using type Artickles > Frontpage.
As you can see the date is in English (it says May..). It needs to be in Dutch...
If you click the article title you get the whole article and then the date is in Ducth..

But it is wrong on the homepage.. how do I get it it Dutch?
User avatar
Gold Boarder

teitbite
Tue May 04, 2010 2:52 pm
Hi

Code can be found at templates/gk_party_freak/html/com_content/frontpage/default_item.php

lines: 53-55:

Code: Select all
<span class="createdate-month-year">
<?php echo date("M, Y", $article_time); ?>
</span>


please try with replacing it with:

Code: Select all
<span class="createdate-month-year">
<?php echo JHTML::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2')) ?>
</span>


it's just for try.
User avatar
Moderator

GK User
Wed May 05, 2010 7:36 am
Thanks! It worked!
I did a little adjusting but now I knew where to find it!
User avatar
Gold Boarder


cron