Project

General

Profile

« Previous | Next » 

Revision 56750

Linking:
Basket Limit:
set to 100
don't allow to add more through search forms
don't allow more in bulk
Bulk - access mode and date: fix getting info from csv
Add margins
Display claims; remove showLatestClaims attribute

Landing pub - HelpeTexts: remove doule quote and helper

View differences:

string-utils.class.ts
69 69

  
70 70
    var myDate = new Date();
71 71
    myDate.setFullYear(+date.substring(0,4));
72
    myDate.setMonth(+date.substring(5,7)-1);
73
    myDate.setDate(+date.substring(8,11))
72
    myDate.setMonth(((date.length>5 )?(+date.substring(5,7)-1):(0)));
73
    myDate.setDate(((date.length>8 )?(+date.substring(8,11)):(1)));
74 74
    return myDate;
75 75

  
76 76
  }

Also available in: Unified diff