...
Code Block |
---|
|
if ($data->items[$i]->authorEmail!="") {
// $feed.= " <author>".htmlspecialchars($data->items[$i]->authorEmail . ' (' .
// $data->items[$i]->author . ')', ENT_COMPAT, 'UTF-8')."</author>\n";
$feed.= " <author>".htmlspecialchars(
$data->items[$i]->author, ENT_COMPAT, 'UTF-8')."</author>\n";
}
|
Only show date, not date + time:
Code Block |
---|
|
The date format information for Joomla! 1.5 is stored in the file <Joomla! home>/language/<your language>/<your language>.ini. For example, for English, it is <Joomla! home>/en-GB/en-GB.ini.
-> language/nl-NL/nl-NL.ini
#DATE_FORMAT_LC2=%A %d %B %Y %H:%M
DATE_FORMAT_LC2=%A %d %B %Y
|