- Enforce minimum elapsed time on registration form
[scuttle] / rss.php
diff --git a/rss.php b/rss.php
index fc35e40f45109519e4216e5dfc5b96005a08bd9e..cf10478fa0c946e7eab6d3e04411532e7828b756 100644 (file)
--- a/rss.php
+++ b/rss.php
@@ -1,7 +1,6 @@
 <?php
 /***************************************************************************
-Copyright (C) 2004 - 2006 Scuttle project
-http://sourceforge.net/projects/scuttle/
+Copyright (C) 2004 - 2006 Marcus Campbell
 http://scuttle.org/
 
 This program is free software; you can redistribute it and/or modify
@@ -19,7 +18,7 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 ***************************************************************************/
 
-require_once('header.inc.php');
+require_once 'header.inc.php';
 $bookmarkservice =& ServiceFactory::getServiceInstance('BookmarkService');
 $cacheservice =& ServiceFactory::getServiceInstance('CacheService');
 $templateservice =& ServiceFactory::getServiceInstance('TemplateService');
@@ -90,7 +89,7 @@ foreach(array_keys($bookmarks_tmp) as $key) {
     if ($GLOBALS['useredir']) {
         $_link = $GLOBALS['url_redir'] . $_link;
     }
-    $_pubdate = gmdate("r", strtotime($row['bDatetime']));
+    $_pubdate = date("r", strtotime($row['bDatetime']));
     // array_walk($row['tags'], 'filter');
 
     $bookmarks_tpl[] = array(

Benjamin Mako Hill || Want to submit a patch?