vbscript: The first day of the week should default to Sunday, not the system default.

oldstable
Huw Davies 2012-10-31 12:06:23 +00:00 committed by Alexandre Julliard
parent 368bc8aa50
commit 908c2d44e1
1 changed files with 1 additions and 1 deletions

View File

@ -1426,7 +1426,7 @@ static HRESULT Global_FormatDateTime(vbdisp_t *This, VARIANT *arg, unsigned args
static HRESULT Global_WeekdayName(vbdisp_t *This, VARIANT *args, unsigned args_cnt, VARIANT *res)
{
int weekday, first_day = 0, abbrev = 0;
int weekday, first_day = 1, abbrev = 0;
BSTR ret;
HRESULT hres;