2
Hi friends
After hours i found a solution, maybe quick, wrong or not but it works for the moment and i can go to bed.
Before, the problem, we need a german date (day.month.year) and not the american/english date (year/month/day). New in the lang file, here calendar.php is the define:
define("_CAL_FORMAT","Y-m-d");
In the german lang should it be:
define("_CAL_FORMAT","d.m.Y");
But this will not work, you see it in the screenshot, first posting. I found in the file /class/xoopsform/formtextdateselect.php in line 51:
$jstime = formatTimestamp($ele_value, _CAL_FORMAT);
For my understanding and in former XOOPs-Version it was:
$jstime = formatTimestamp($ele_value, 'F j Y, H:i:s');
That will work for this time. Please help me out, i dont know where to find or search for this problem.
Greets Andy