{NEWCATID} display date of creation
Posted: Thu 20. Oct 2005, 20:37
hi,
NEWCATID includes the following code to display the article link.
The date that appears is the date of the last modification. How can I set the date to the date of creation?
Thanks!
NEWCATID includes the following code to display the article link.
Code: Select all
if(trim($template_default["date_format"])) {
$article_title = international_date_format(
$template_default["date_language"],
$template_default["date_format"],
$row[3]).' - '.$article_title;
}
$new_links .= $template_default["link_before"].$template_default["link_symbol"];
$new_links .= '<div class="newcatid"><a href="index.php?id='.$row[2].','.$row[0].',0,0,1,0"';
$new_links .= $target.">".html_specialchars($article_title)."</a></div>";
Thanks!