<br><div>To enable due dates entry in the SelfService interface and while viewing the basics of a ticket, I've made a number of modifications. One is to the Date.pm file itself to enable a "Short" version. The diff is below:</div>
<div><br></div><div><div>diff Date.pm.dist Date.pm</div><div>404a405,422</div><div>> # {{{ sub AsShortString</div><div>> </div><div>> =head2 sub AsShortString</div><div>> </div><div>> Returns the object\'s time as a string with only the date, no time.</div>
<div>> </div><div>> =cut</div><div>> </div><div>> sub AsShortString {</div><div>> my $self = shift;</div><div>> return ($self->loc("Not set")) if ($self->Unix <= 0);</div><div>
> </div><div>> my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($self->Unix);</div><div>> </div><div>> return $self->loc("[_1] [_2] [_3]", $self->GetWeekday($wday), $self->GetMonth($mon), ($year+1900));</div>
<div>> }</div><div>> # }}}</div><div>> </div><div><br></div><div>Is there a process for submitting patches?</div></div>