[Comoblog-commit] comoblog/include libraries.inc.php,1.5,1.6
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2005-12-15 23:58:15
|
Update of /cvsroot/comoblog/comoblog/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20006/include Modified Files: libraries.inc.php Log Message: since we can now change the date of the posts on the edit page, and add them with a future date, it makes sense not to display them until that date has passed. Index: libraries.inc.php =================================================================== RCS file: /cvsroot/comoblog/comoblog/include/libraries.inc.php,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- libraries.inc.php 1 Dec 2005 14:57:55 -0000 1.5 +++ libraries.inc.php 15 Dec 2005 23:58:06 -0000 1.6 @@ -170,6 +170,7 @@ on p.post_id = tr.post_id left join ".CFG_MYSQL_TABPREFIX."images i on t.img_id = i.img_id + where post_mail_date < unix_timestamp(now()) group by p.post_id order by p.post_mail_date desc limit 0,".$howmany." |