webERP Forum

Full Version: Unknown Date Format
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have been seeing this error in certain places in webERP. For example when I choose a date for DailyBankTransactions.php script I see this error.

I am about to look a the code but I figured one of you may be able to identify it right away...

[attachment=842]
It appears this:

PHP Code:
class="date" required="required" 

When changed to this:

PHP Code:
class="date" alt="'.$_SESSION['DefaultDateFormat'].'" required="required" 

Fixes the issue?

Please bear in mind I am still using version 4.14.1...
Yeah, new handling (in 4.15) eliminates the date-in-the-alt attribute need.

Before 4.15, that change is necessary for the date picker to work properly.
Thank you Paul!
Ah sorry Paul, my bad I checked the script was fine against the current code not the last release.

Tim