Just one thing.
When you use another language than english, you could have some problems with the update date.
The function strtotime works well only for date in english format.
So, in the file functions.general.php, in the function called convertDate, the date is badly converted (the result of the function is "01-01-1970 00:00:00").
For french people, for example, I have corrected this problem like that:
In the file functions.general.php, before the line:
- Code: Select all
return date("Y-m-d 00:00:00", strtotime($armoryDate));
I have translated the month from french to english:
- Code: Select all
$localmonth = array("janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre");
$englishmonth = array("January","February","March","April","May","June","July","August","September","October","November","December");
$armoryDate = str_replace($localmonth,$englishmonth,$armoryDate);
Like that, the update date is correct even if use of others languages.
Anyway, the Add-on works very well in french and thank you for this great job!