Closed (fixed)
Project:
Video Upload
Version:
7.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Sep 2009 at 19:33 UTC
Updated:
12 May 2010 at 21:00 UTC
Jump to comment: Most recent file
Comments
Comment #1
n3uronick commentedAfter quite a long while, finally found the problem with youtube deletion.
You have to do it via Manage Video Uploads (admin/content/video-upload) and after the node was deleted. Then you will be able to select an orphaned video and choose delete.
BUT, there is bug in code which results in deletion process not being executed. So, you have to change function
video_upload_admin_video_delete_confirm_submit($form_id, $form_values)in video_upload.admin.incline 104 should be:
if ($form_values['values']['confirm']) {and line 107:
foreach ($form_values['values']['videos'] as $vid => $value) {Comment #2
bojanz commentedNeuronick's change fixed it for me, attaching it as a patch.
Comment #3
bojanz commentedComment #4
jhedstromThanks neuronick and bojanz, committed to 6.x.
Comment #5
jhedstromCommitted to 7.x.