aboutsummaryrefslogtreecommitdiff
path: root/actions/videolist
diff options
context:
space:
mode:
Diffstat (limited to 'actions/videolist')
-rw-r--r--actions/videolist/edit.php3
1 files changed, 2 insertions, 1 deletions
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]);
}