Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.

Commit a9ad9ee

Browse files
Improved input data cleanup
1 parent eb181f1 commit a9ad9ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
return [
4-
'appVersion' => '6.3.427',
5-
'patchVersion' => '2022.08.12',
4+
'appVersion' => '6.3.428',
5+
'patchVersion' => '2022.08.13',
66
'lib_roundcube' => '0.3.0',
77
];

modules/Rss/models/Record.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function setRssObject($rss)
7373
public function setRssValues($rss)
7474
{
7575
$this->set('rsstitle', \App\Purifier::purifyByType((string) $rss->title, 'Text'));
76-
$this->set('url', $rss->link);
76+
$this->set('url', \App\Purifier::purifyByType((string) $rss->link, 'Text'));
7777
}
7878

7979
/**

0 commit comments

Comments
 (0)