cmc-sales/views/elements/isEmptyDate.ctp

10 lines
125 B
Plaintext
Raw Normal View History

2010-05-17 23:45:38 -07:00
<?php
if($date == "0000-00-00") {
echo "";
2010-05-17 23:45:38 -07:00
}
else {
echo date("j M Y", strtotime($date));
}
?>