mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
"fixed postgres problem reported on the user list: operator does not exist: character varying = integer"
This commit is contained in:
parent
d76143310e
commit
15fa1c84f7
@ -297,11 +297,11 @@ class infolog_so
|
||||
switch ($filter)
|
||||
{
|
||||
case 'upcoming':
|
||||
return " AND info_startdate >= '$tomorrow'";
|
||||
return " AND info_startdate >= $tomorrow";
|
||||
case 'today':
|
||||
return " AND info_startdate < '$tomorrow'";
|
||||
return " AND info_startdate < $tomorrow";
|
||||
case 'overdue':
|
||||
return " AND (info_enddate != 0 AND info_enddate < '$tomorrow')";
|
||||
return " AND (info_enddate != 0 AND info_enddate < $tomorrow)";
|
||||
case 'date':
|
||||
if (!$today || !$tomorrow)
|
||||
{
|
||||
@ -315,7 +315,7 @@ class infolog_so
|
||||
}
|
||||
return " AND ($today <= info_enddate AND info_enddate < $tomorrow)";
|
||||
case 'limit':
|
||||
return " AND (info_modified >= '$today' OR NOT (info_status IN ('done','billed','cancelled')))";
|
||||
return " AND (info_modified >= $today OR NOT (info_status IN ('done','billed','cancelled')))";
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user