@@ -124,11 +124,11 @@ struct tm tm; if (gmtime_r(&sec, &tm) == NULL) @throw [OFOutOfRangeException newWithClass: isa]; - strftime(str, 20, "%Y-%m-%d %H:%M:%S", &tm); + strftime(str, 20, "%Y-%m-%dT%H:%M:%S", &tm); #else struct tm *tm; # ifdef OF_THREADS [mutex lock]; @@ -136,11 +136,11 @@ @try { # endif if ((tm = gmtime(&sec)) == NULL) @throw [OFOutOfRangeException newWithClass: isa]; - strftime(str, 20, "%Y-%m-%d %H:%M:%S", tm); + strftime(str, 20, "%Y-%m-%dT%H:%M:%S", tm); # ifdef OF_THREADS } @finally { [mutex unlock]; } # endif