From c70ec6161e4ef4d0daee6514da0a4d4e6b183207 Mon Sep 17 00:00:00 2001 From: Steve Clay Date: Tue, 10 Apr 2012 10:43:51 -0400 Subject: Remove filtering on URL input --- actions/videolist/edit.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'actions/videolist/edit.php') diff --git a/actions/videolist/edit.php b/actions/videolist/edit.php index fe614cd5a..480a3943b 100644 --- a/actions/videolist/edit.php +++ b/actions/videolist/edit.php @@ -8,7 +8,8 @@ $variables = elgg_get_config('videolist'); $input = array(); foreach ($variables as $name => $type) { - $input[$name] = get_input($name); + $filter_input = ($name !== 'video_url'); + $input[$name] = get_input($name, null, $filter_input); if ($name == 'title') { $input[$name] = strip_tags($input[$name]); } -- cgit v1.2.3