You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, the entry birthday. In the upper user profile it is shown as 13 Apr. 1950, in the edit profile / profile info area it is shown as 1950-04-13, in the backend Kunena/User/User Information it is shown as 04/13/1950 and in the database it is shown as 1950-04-13.
During my search, I came across the entry “datepicker” and the format: yyyy-mm-dd in the file /components/com_kunena/template/aurelia/assets/js/main.js.
As a test, I changed the format yyyy-mm-dd to dd-mm-yyyy, but I couldn't see any changes in the spelling yet.
In doing so, I noticed the entry (“liszt:updated”); in row 28 of this file, which I changed to (“list:update”);.
I hope “liszt” was a typo.
When I change the date to 13-04-1950 in the user information in the backend, 04/13/1950 reappears in the birthday field after I save.
The text was updated successfully, but these errors were encountered:
I found a solution for one of these problems:
When I change the date to 13-04-1950 in the user information in the backend, 04/13/1950 reappears in the birthday field after I save.
In /administrator/components/com_kunena/tmpl/user/edit.php, I changed the entry 'm/d/Y' to 'd-m-Y' on line 187.
The date 13-04-1950 was displayed.
Then I changed the entry to 'd.m.Y' and now the date 13.04.1950 is displayed.
A better solution, in my opinion, is to use en-GB instead of en-US as your language. The alternative to using ambiguous short date codes (e.g. d-m-Y) would be to use d-M-Y instead.
For example, the entry birthday. In the upper user profile it is shown as 13 Apr. 1950, in the edit profile / profile info area it is shown as 1950-04-13, in the backend Kunena/User/User Information it is shown as 04/13/1950 and in the database it is shown as 1950-04-13.
During my search, I came across the entry “datepicker” and the format: yyyy-mm-dd in the file /components/com_kunena/template/aurelia/assets/js/main.js.
As a test, I changed the format yyyy-mm-dd to dd-mm-yyyy, but I couldn't see any changes in the spelling yet.
In doing so, I noticed the entry (“liszt:updated”); in row 28 of this file, which I changed to (“list:update”);.
I hope “liszt” was a typo.
When I change the date to 13-04-1950 in the user information in the backend, 04/13/1950 reappears in the birthday field after I save.
The text was updated successfully, but these errors were encountered: