Hi
I think that vlibDate retuns the wrong week
eg:
$week = $vdate->weekOfYear($vdate->mkTimestamp ("2002","06","10"));
then $week is 23 which is incorrect according to my calendar it's week 24.
PHP function date() returns this:
$week = date("W", mktime(0,0,0,"06","10","2002"));
$week is now 24
Best
Steen