diff options
author | rvelices <rv-github@modusoptimus.com> | 2009-02-04 02:41:03 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2009-02-04 02:41:03 +0000 |
commit | e8dac75c400dea48b97fe72a60cf554f0123c280 (patch) | |
tree | ba665c8016dacfe7030ab2a8826d8c16363a21ff /feed.php | |
parent | 06bccdfcc344d25aca27e59250dd93ba95929974 (diff) |
- removed second parameter $type from function format_date
git-svn-id: http://piwigo.org/svn/trunk@3122 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | feed.php | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -122,8 +122,7 @@ if (!$image_only) if (count($news) > 0) { $item = new FeedItem(); - $item->title = sprintf(l10n('New on %s'), - format_date($dbnow, 'mysql_datetime') ); + $item->title = sprintf(l10n('New on %s'), format_date($dbnow) ); $item->link = $conf['gallery_url']; // content creation |