From 0577676d63ad90e1328ffd7ffaf7a93f2e73187c Mon Sep 17 00:00:00 2001 From: Steve Clay Date: Mon, 9 Apr 2012 17:06:47 -0400 Subject: fix for ampersands getting HTML-escaped in URLs --- actions/videolist/edit.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'actions') diff --git a/actions/videolist/edit.php b/actions/videolist/edit.php index 1572d88ce..107cdc917 100644 --- a/actions/videolist/edit.php +++ b/actions/videolist/edit.php @@ -32,6 +32,8 @@ if(!$video_guid) { forward(REFERER); } + // get_input (htmlawed) "fixes" URLs by breaking them + $input['video_url'] = str_replace('&', '&', $input['video_url']); $parsedPlatform = videolist_parse_url($input['video_url']); -- cgit v1.2.3