FSN#35976 Voorspelbaarder gedrag als er 'Zie melding 12345' tussendoor staat
svn path=/Website/trunk/; revision=28745
This commit is contained in:
@@ -292,7 +292,7 @@ var sorttable = {
|
||||
if (b[0] == "") return 1;
|
||||
var mtch = a[0].match(sorttable.DATE_RE);
|
||||
if (!mtch)
|
||||
return 0;
|
||||
return -1;
|
||||
var y = mtch[3]; m = mtch[2]; d = mtch[1];
|
||||
if (m.length == 1) m = '0'+m;
|
||||
if (d.length == 1) d = '0'+d;
|
||||
@@ -300,7 +300,7 @@ var sorttable = {
|
||||
var dt1 = y+m+d+hh+mi;
|
||||
mtch = b[0].match(sorttable.DATE_RE);
|
||||
if (!mtch)
|
||||
return 0;
|
||||
return 1;
|
||||
y = mtch[3]; m = mtch[2]; d = mtch[1];
|
||||
if (m.length == 1) m = '0'+m;
|
||||
if (d.length == 1) d = '0'+d;
|
||||
@@ -315,14 +315,14 @@ var sorttable = {
|
||||
if (b[0] == "") return 1;
|
||||
var mtch = a[0].match(sorttable.DATE_RE);
|
||||
if (!mtch)
|
||||
return 0;
|
||||
return -1;
|
||||
var y = mtch[3]; d = mtch[2]; m = mtch[1];
|
||||
if (m.length == 1) m = '0'+m;
|
||||
if (d.length == 1) d = '0'+d;
|
||||
var dt1 = y+m+d;
|
||||
mtch = b[0].match(sorttable.DATE_RE);
|
||||
if (!mtch)
|
||||
return 0;
|
||||
return 1;
|
||||
y = mtch[3]; d = mtch[2]; m = mtch[1];
|
||||
if (m.length == 1) m = '0'+m;
|
||||
if (d.length == 1) d = '0'+d;
|
||||
|
||||
Reference in New Issue
Block a user