Bug -- created date defaults to
Status: Inactive
Brought to you by:
toolbutton
If the "created" date is not specifie the code creates a
created date form the modified date but the constructor
uses the default localname which is "modified" instead
of "created".
The fix is simply to specify the local name int he
constructor.
if(this.Created == null)
{
this.Created =
new AtomDateConstruct("created"); // Bug fix from
the original -- Bob Frankston 2004-03-18
this.Created.DateTime =
this.Modified.DateTime;
this.Created.UtcOffset =
this.Modified.UtcOffset;
}
Logged In: YES
user_id=481098
Fixed... thanks.
ps. sorry for the delay but I was very busy. The next time
use the bug tracker ;-)