Recent Topics

1 Nov 29, 2007 13:14    

My b2evolution Version: 2.1.0.x

Is there any way that I could add something so it shows as :

Day 331 of Week 48 Wednesday November, 28 2007

Also when I post and select the version I'm currently using (2.1.0x) it posts version (1.9.0x) ?

2 Nov 29, 2007 13:39

Hi hairball,

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.

Good luck


Form is loading...