Conversation
Review Summary by QodoFix PHP date format specifiers in calendar documentation
WalkthroughsDescription• Corrects PHP date format specifiers in calendar documentation • Changes %H:%i:%s to %H:%M:%S for proper time formatting • Fixes two occurrences in documentation and code example Diagramflowchart LR
A["Incorrect format<br/>%H:%i:%s"] -- "Replace with<br/>correct PHP format" --> B["Correct format<br/>%H:%M:%S"]
File Changes1. docs/general-concepts/forms-fields/standard-fields/calendar.md
|
Code Review by Qodo
1. Versioned docs still wrong
|
|
Thanks for fixing this. Could you include these changes in the other versions as well, then we can merge this. That is, in the equivalent calendar.md file under versioned_docs/version-4.4, versioned_docs/version-5.4 and versioned_docs/version-6.0. Those are the other versions we're also maintaining at the moment. |
Use
%Y-%m-%d %H:%M:%Sto return YYYY-MM-DD HH-MM-SS instead of%Y-%m-%d %H:%i:%s%iwill not return anything and%sreturns a timestamp. So, not the expected result.