mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-14 12:07:46 +02:00
fix(platforms): convert special characters to htmlentities to validate url
remove validate_url custom validator and replace with CI4's valid_url_strict
This commit is contained in:
parent
67b6e30d24
commit
82310a2e0b
29 changed files with 4 additions and 82 deletions
|
|
@ -75,7 +75,7 @@ class PodcastPlatformController extends BaseController
|
|||
continue;
|
||||
}
|
||||
|
||||
if (! $validation->check($podcastPlatformUrl, 'validate_url')) {
|
||||
if (! $validation->check(htmlentities($podcastPlatformUrl), 'valid_url_strict')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue