Browse Source

Bug 3289 - Fixed bad conditional check that made news items not show up until the day after pubdate.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
3.2.x
Liz Rea 15 years ago
committed by Galen Charlton
parent
commit
0c29750106
  1. 4
      C4/NewsChannels.pm

4
C4/NewsChannels.pm

@ -328,11 +328,11 @@ sub GetNewsToDisplay {
SELECT *,timestamp AS newdate
FROM opac_news
WHERE (
expirationdate > CURRENT_DATE()
expirationdate >= CURRENT_DATE()
OR expirationdate IS NULL
OR expirationdate = '00-00-0000'
)
AND `timestamp` < CURRENT_DATE()
AND `timestamp` <= CURRENT_DATE()
AND lang = ?
ORDER BY number
"; # expirationdate field is NOT in ISO format?

Loading…
Cancel
Save