LuisPro,
As you suspected, the site has changed the format for its date presentation. Try changing these lines:
$aDate = _StringBetween($sSource, '<div id="anzeige_datum">', '</div>')
$sDate = $aDate[0]
$aDate = StringSplit($sDate, " ")
$sYear = $aDate[$aDate[0]] ; <<<<<<<
$sDate = StringTrimRight($aDate[$aDate[0] - 2], 1) ; <<<<<<<
$iMonth = 0
Switch $aDate[$aDate[0] - 1] ; <<<<<<<
Case "Januar"
$iMonth = 1
That works for me now for a single digit date - please come back if it fails when the date has 2 digits, although I rather hope it will still extract it correctly.
M23