Forked from michaeltwofish/report_candidates_partial.html.php
Created
August 12, 2011 05:24
-
-
Save mikelietz/1141514 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Format the date field, leaving invalid dates alone | |
| if (strtotime($candidate->dob)) { | |
| $candidate->dob = date("d/m/Y", strtotime($candidate->dob)); | |
| } else if (isnull($candidate->dob)) { | |
| $candidate->dob = "MM/DD/YYYY"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment