Browse Source

Minor fixes to PicoFeed integration

microsub
Dustin Wilson 7 years ago
parent
commit
cb664eab03
  1. 4
      lib/Database.php
  2. 4
      locale/en.php

4
lib/Database.php

@ -293,8 +293,8 @@ class Database {
(new PicoFeed\Reader\Favicon)->find($url),
$feed->siteUrl,
// Convert the date formats to ISO 8601 before inserting
$driver::formatDate($feed->date),
$driver::formatDate($resource->getLastModified()),
$this->driver::formatDate($feed->date),
$this->driver::formatDate($resource->getLastModified()),
$resource->getEtag(),
$fetchUser,
$fetchPassword

4
locale/en.php

@ -1,7 +1,7 @@
<?php
return [
'Driver.User.Internal.Name' => 'Internal',
'Exception.JKingWeb/NewsSync/Exception.uncoded' => 'The specified exception symbol {0} has no code specified in Exception.php',
//this should not usually be encountered
'Exception.JKingWeb/NewsSync/Exception.unknown' => 'An unknown error has occurred',
@ -60,7 +60,7 @@ return [
'Exception.JKingWeb/NewsSync/Feed/Exception.forbidden' => 'Could not download feed "{url}" because you do not have permission to access it',
'Exception.JKingWeb/NewsSync/Feed/Exception.unauthorized' => 'Could not download feed "{url}" because you provided insufficient or invalid credentials',
'Exception.JKingWeb/NewsSync/Feed/Exception.malformed' => 'Could not parse feed "{url}" because it is malformed',
'Exception.JKingWeb/NewsSync/Feed/Exception.xxe' => 'Refused to parse feed "{url}" because it contains an XXE attack',
'Exception.JKingWeb/NewsSync/Feed/Exception.xmlEntity' => 'Refused to parse feed "{url}" because it contains an XXE attack',
'Exception.JKingWeb/NewsSync/Feed/Exception.subscriptionNotFound' => 'Unable to find a feed at location "{url}"',
'Exception.JKingWeb/NewsSync/Feed/Exception.unsupportedFormat' => 'Feed "{url}" is of an unsupported format'
];
Loading…
Cancel
Save