Find your skin, crack open index.main.php, Find and replace something similar to this:
$Item->issue_date( array(
'before' => ' ',
'after' => ' ',
'date_format' => '\D\a\y z \o\f \W\e\e\k W\, l F\, d o',
) );
To understand this code: the \ escapes the character after it. I used it too often. Characters that are not escaped represent php's Data / Time arguments. See http://nl3.php.net/date.
Hi hairball,
Find your skin, crack open index.main.php, Find and replace something similar to this:
To understand this code: the \ escapes the character after it. I used it too often. Characters that are not escaped represent php's Data / Time arguments. See http://nl3.php.net/date.
Good luck