Hallo.

Ich habe nun ein Patch, der bei mir funktioniert.

Suche in DateChecksum.pm nach:


    $Month  = "0$Month" if ($Month <10);
    $Day = "0$Day" if ($Day <10);
    # read count

    

Ersetze durch:


while ( length( $Month ) < 2 ) {
        $Month = "0" . $Month;
}

while ( length( $Day ) < 2 ) {
        $Day = "0" . $Day;
}
        # read count


        
-- 
Mit freundlichen Grüssen
Andre Bauer
System: Debian 3.1 / Apache 2.0.54 / MySQL 4.0.24 / OTRS 2.0.3

============================================

HF> Hallo Andre,
HF>  
HF> bei mir ist der gleiche Fall. Habe aber noch keine Zeit gehabt,
HF> Nachforschungen anzustellen.
HF> Bin aber an Infos interessiert.


HF> Mit freundlichen Grüßen
HF> Best regards
HF> Hans Fittkau

HF> Hans Fittkau Datenbanksysteme
HF> ** network-admin, webservice, database-programming **

HF> mail: [EMAIL PROTECTED]
HF> inet: www.fittkau.org



_______________________________________________
OTRS Mailingliste: otrs-de - Webpage: http://otrs.org/
Archiv: http://lists.otrs.org/pipermail/otrs-de/
Listenabo verwalten: http://lists.otrs.org/cgi-bin/listinfo/otrs-de/
Support oder Consulting fuer Ihr OTRS System?
=> http://www.otrs.de/

Antwort per Email an