Find all instances of
- Code: Select all
STR_TO_DATE(players.dateupdatedutc,'". $addon_conf['ArmorySync']['DateUpdatedFormat'] ."')
- Code: Select all
CONCAT( '20',MID( players.dateupdatedutc, 7, 2 ) , '-', MID( players.dateupdatedutc, 4, 2 ) , '-', MID( players.dateupdatedutc, 1, 2 ) , ' ', MID( players.dateupdatedutc, 9, 10 ) )
There should be three edits in total at lines 25, 32 and 33.
For wow-europe, the replacement line would probably be the following, but I cannot test it, so YMMV...
- Code: Select all
CONCAT( '20',MID( players.dateupdatedutc, 7, 2 ) , '-', MID( players.dateupdatedutc, 1, 2 ) , '-', MID( players.dateupdatedutc, 4, 2 ) , ' ', MID( players.dateupdatedutc, 9, 10 ) )