diff options
| author | 2016-10-20 11:38:58 +0200 | |
|---|---|---|
| committer | 2016-10-20 11:38:58 +0200 | |
| commit | 9ffd56ea68caaaff49efefacf501e07298eca7e2 (patch) | |
| tree | 8c8448b652b0280265c98d42c81348d2c0dad409 /app/Controllers/feedController.php | |
| parent | 8a45743b9036078344ea362b183358f8ca8e4dd3 (diff) | |
| parent | 7f2b0439ec4158ee7d78571d60e9bcc995e87cac (diff) | |
Merge pull request #1335 from Alkarex/guid-ascii-bug
guid and urls should not contain low/high characters
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 8751d2fff..ed3229687 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -314,7 +314,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController { if (count($entries) > 0) { $newGuids = array(); foreach ($entries as $entry) { - $newGuids[] = $entry->guid(); + $newGuids[] = safe_ascii($entry->guid()); } // For this feed, check existing GUIDs already in database. $existingHashForGuids = $entryDAO->listHashForFeedGuids($feed->id(), $newGuids); |
