Skip to content

Commit

Permalink
Improved input data cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszkrzaczkowski committed Aug 13, 2022
1 parent eb181f1 commit a9ad9ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/version.php
@@ -1,7 +1,7 @@
<?php

return [
'appVersion' => '6.3.427',
'patchVersion' => '2022.08.12',
'appVersion' => '6.3.428',
'patchVersion' => '2022.08.13',
'lib_roundcube' => '0.3.0',
];
2 changes: 1 addition & 1 deletion modules/Rss/models/Record.php
Expand Up @@ -73,7 +73,7 @@ public function setRssObject($rss)
public function setRssValues($rss)
{
$this->set('rsstitle', \App\Purifier::purifyByType((string) $rss->title, 'Text'));
$this->set('url', $rss->link);
$this->set('url', \App\Purifier::purifyByType((string) $rss->link, 'Text'));
}

/**
Expand Down

0 comments on commit a9ad9ee

Please sign in to comment.