diff options
author | Sem <sembrestels@riseup.net> | 2011-11-12 00:27:48 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2011-11-12 00:27:48 +0100 |
commit | 9b176145bc10850e02b8602bb670d6832945ea83 (patch) | |
tree | 87e7144654c41d974b3a873ecd49571f58200564 /actions | |
parent | 6bf0fd153040b94751cc8fffde9f1b1f56524a06 (diff) | |
download | elgg-9b176145bc10850e02b8602bb670d6832945ea83.tar.gz elgg-9b176145bc10850e02b8602bb670d6832945ea83.tar.bz2 |
Fixes two bugs when editing a video.
Diffstat (limited to 'actions')
-rw-r--r-- | actions/videolist/edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/videolist/edit.php b/actions/videolist/edit.php index f9db7b6a2..72e1d2427 100644 --- a/actions/videolist/edit.php +++ b/actions/videolist/edit.php @@ -18,7 +18,7 @@ foreach ($variables as $name => $type) { }
// Get guids
-$videolist_guid = (int)get_input('videolist_guid');
+$video_guid = (int)get_input('video_guid');
$container_guid = (int)get_input('container_guid');
elgg_make_sticky_form('videolist');
|