- Added $wb['conf_format_dateshort_human_readable'] variable (shows the human readable date format like "tt.mm.jjjj" or "yyyy-mm-dd" next to date fields so that one knows how to format the date) to global language files.
| | |
| | | <?php |
| | | $wb['conf_format_dateshort'] = 'd.m.Y'; |
| | | $wb['conf_format_dateshort_human_readable'] = "tt.mm.jjjj"; |
| | | $wb['conf_format_datelong'] = 'l, d. F Y'; |
| | | $wb['conf_format_timeshort'] = 'H:i'; |
| | | $wb['conf_format_timelong'] = 'H:i:s'; |
| | |
| | | <?php |
| | | $wb['conf_format_dateshort'] = "Y-m-d"; |
| | | $wb['conf_format_dateshort_human_readable'] = "yyyy-mm-dd"; |
| | | $wb['conf_format_datelong'] = "l dS of F Y"; |
| | | $wb['conf_format_timeshort'] = "H:i"; |
| | | $wb['conf_format_timelong'] = "H:i:s"; |