aboutsummaryrefslogtreecommitdiffstats
path: root/feed.php
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2010-07-05 20:46:55 +0000
committernikrou <nikrou@piwigo.org>2010-07-05 20:46:55 +0000
commit531ee3537559c2a03220b189c17f9c96d73bafc5 (patch)
tree74414c479f8d71a5261735e71749ef01032488e8 /feed.php
parentc1414297fb6ad08befb44bc78fc62e00e19ba8d5 (diff)
Bug 1762 fixed : Compleet RSS Feed returns notice
Remove mysql specific function git-svn-id: http://piwigo.org/svn/trunk@6662 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'feed.php')
-rw-r--r--feed.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/feed.php b/feed.php
index 642682353..b499c8296 100644
--- a/feed.php
+++ b/feed.php
@@ -36,11 +36,11 @@ include_once(PHPWG_ROOT_PATH.'include/functions_notification.inc.php');
* @param string mysql datetime format
* @return int timestamp
*/
-function mysqldt_to_ts($mysqldt)
+function datetime_to_ts($datetime)
{
- $date = explode_mysqldt($mysqldt);
- return mktime($date['hour'], $date['minute'], $date['second'],
- $date['month'], $date['day'], $date['year']);
+ $date = strptime($datetime, '%Y-%m-%d %H:%M:%S');
+ return mktime($date['tm_hour'], $date['tm_min'], $date['tm_sec'],
+ $date['tm_mon'], $date['tm_mday'], 1900+$date['tm_year']);
}
/**
@@ -136,7 +136,7 @@ if (!$image_only)
$item->description.= '</ul>';
$item->descriptionHtmlSyndicated = true;
- $item->date = mysqldt_to_ts($dbnow);
+ $item->date = $dbnow;
$item->author = $conf['rss_feed_author'];
$item->guid= sprintf('%s', $dbnow);;
@@ -154,7 +154,7 @@ UPDATE '.USER_FEED_TABLE.'
if ( !empty($feed_id) and empty($news) )
{// update the last check from time to time to avoid deletion by maintenance tasks
if ( !isset($feed_row['last_check'])
- or time()-mysqldt_to_ts($feed_row['last_check']) > 30*24*3600 )
+ or time()-datetime_to_ts($feed_row['last_check']) > 30*24*3600 )
{
$query = '
UPDATE '.USER_FEED_TABLE.'
@@ -188,7 +188,7 @@ foreach($dates as $date_detail)
$item->descriptionHtmlSyndicated = true;
- $item->date = mysqldt_to_ts($date);
+ $item->date = $date;
$item->author = $conf['rss_feed_author'];
$item->guid= sprintf('%s', 'pics-'.$date);;