Fix Contact Birthday Formatting
Under Tools > Misc > Fix Birthdays is a utility to correct Birthday formatting
Converting the birthday PHP date function from:
"YnJ" - 2023518
- "Y" represents the full year
- "n" represents the month without leading zeros
- "J" represents the day of the month without leading zeros
to:
"Ymd" - 20230518
- "Y" represents the full year
- "m" represents the month with leading zeros
- "d" represents the day of the month with leading zeros