An episode of Fifth Gear is currently airing!

Viper007Bond

Chicken Nugget Connoisseur
STAFF MEMBER
Joined
Sep 21, 2003
Messages
31,044
Location
Portland, Oregon
Car(s)
2008 Dodge Viper, 2006 MB CLS55 AMG
What the hell. It should be working fine:

Code:
$fg_airdates = array(
	gmmktime(20, 0, 0, 4, 24, 2006) => 'episode', // 09x03
	gmmktime(20, 0, 0, 5, 01, 2006) => 'episode', // 09x04
	gmmktime(20, 0, 0, 5, 08, 2006) => 'episode', // 09x05
);
I guess I coded my countdown script wrong. :(
 

Viper007Bond

Chicken Nugget Connoisseur
STAFF MEMBER
Joined
Sep 21, 2003
Messages
31,044
Location
Portland, Oregon
Car(s)
2008 Dodge Viper, 2006 MB CLS55 AMG
Seems the leading zero was breaking it. It's been fixed now. :)
 

GodGell

Member
Joined
Apr 1, 2005
Messages
61
Location
Budapest
a leading zero means the number is in base 8 (octal). 01 equals 1, but 08 equals 0.
 
Top