<br><div>To enable due dates entry in the SelfService interface and while viewing the basics of a ticket, I&#39;ve made a number of modifications. One is to the Date.pm file itself to enable a &quot;Short&quot; version. The diff is below:</div>

<div><br></div><div><div>diff Date.pm.dist Date.pm</div><div>404a405,422</div><div>&gt; # {{{ sub AsShortString</div><div>&gt;&nbsp;</div><div>&gt; =head2 sub AsShortString</div><div>&gt;&nbsp;</div><div>&gt; Returns the object\&#39;s time as a string with only the date, no time.</div>

<div>&gt;&nbsp;</div><div>&gt; =cut</div><div>&gt;&nbsp;</div><div>&gt; sub AsShortString {</div><div>&gt; &nbsp; &nbsp; my $self = shift;</div><div>&gt; &nbsp; &nbsp; return ($self-&gt;loc(&quot;Not set&quot;)) if ($self-&gt;Unix &lt;= 0);</div><div>

&gt;&nbsp;</div><div>&gt; &nbsp; &nbsp; my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($self-&gt;Unix);</div><div>&gt;&nbsp;</div><div>&gt; &nbsp; &nbsp; return $self-&gt;loc(&quot;[_1] [_2] [_3]&quot;, $self-&gt;GetWeekday($wday), $self-&gt;GetMonth($mon), ($year+1900));</div>

<div>&gt; }</div><div>&gt; # }}}</div><div>&gt;&nbsp;</div><div><br></div><div>Is there a process for submitting patches?</div></div>