<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/jsdatetime/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/jsdatetime/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/jsdatetime/bugs/</id><updated>2010-09-23T06:44:40Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>Incorrect format issue</title><link href="https://sourceforge.net/p/jsdatetime/bugs/2/" rel="alternate"/><published>2010-09-23T06:44:40Z</published><updated>2010-09-23T06:44:40Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.nete94b511e8286e0573abd60c0a2cae16cc9e7a911</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;tracked it down to I believe this line:&lt;/p&gt;
&lt;p&gt;var res = format.split(/(dddd|ddd|dd|d|fff|ff|f|hh|h|HH|H||mm|m|MMMM|MMM|MM|M|ss|s|tt|t|yyyy|yyy|yy|y)?/);&lt;/p&gt;
&lt;p&gt;which when parsing the time format of "MM/dd/yyyy HH:mm:ss" gets split by every letter and misses a couple.  I don't know enough about how format.split works here to fix it myself.  Point being is the output is incorrect as a result.&lt;/p&gt;
&lt;p&gt;the res array looks like  {M,M,/,/,y,y,y,y,_,,:,m,m,:,s,s} the underscore is meant to be a space.&lt;/p&gt;
&lt;p&gt;I presume it should look like {MM,/,dd,/,yyyy,_,HH,:,mm,:,ss}&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>DateTime format string error for 't' and 'tt' options</title><link href="https://sourceforge.net/p/jsdatetime/bugs/1/" rel="alternate"/><published>2010-04-13T16:31:26Z</published><updated>2010-04-13T16:31:26Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netf7345f2306002b0de40f8afb4202aef630d36a27</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;When applying a format string with the 't' or 'tt' option times such as 12:30PM will yield A or AM.&lt;/p&gt;
&lt;p&gt;data["tt"] = (hour &amp;gt; 12 ? DateTime.strings.PM : DateTime.strings.AM) ;&lt;br /&gt;
data["t"] = (hour &amp;gt; 12 ? DateTime.strings.P : DateTime.strings.A);&lt;/p&gt;
&lt;p&gt;The &amp;gt; should be changed to a &amp;gt;= for correct behavior.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>