Problem in Browse queries
Brought to you by:
eopiclius
In userbrowse.phtml, adminbrowse.phtml and
techbrowse.phtml
you have the following code:
if (($startDay == 0) or ($endDay == 0) or ($startDay
>= 31) or ($endDay >= 31)){
error_alert("Please enter a valid day of the month");
The Error here is that you are not allowing the 31st
of the month to be a valid day. This should be
changed to:
if (($startDay == 0) or ($endDay == 0) or ($startDay >
31) or ($endDay > 31)){
error_alert("Please enter a valid day of the month");
Logged In: YES
user_id=320993
Sorry the actual files this applies to are:
adminbrowse.phtml
adminbrowseall.phtml
sort.phtml
techbrowseall.phtml
userbrowse.phtml