Is it possible to get a small change included into Zend_Date?

The RSS regexp is requiring two digits for the day but many RSS feeds are spitting out 1 digit.

Line #2324 of Zend_Date:
$result = preg_match('/^\w{3},\s(\d{2})\s(\w{3})\s(\d{2,4})\s(\d{1,2}):(\d{2}):(\d{2})\s.{1,21}$/', $date, $match);

Could we get that changed to:
$result = preg_match('/^\w{3},\s(\d{*1,*2})\s(\w{3})\s(\d{2,4})\s(\d{1,2}):(\d{2}):(\d{2})\s.{1,21}$/', $date, $match);

I think it would be helpful to more than just me...

Arthur

Reply via email to