diff options
author | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-06-19 22:49:16 +0000 |
---|---|---|
committer | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-06-19 22:49:16 +0000 |
commit | 38373b18497493630ba298df1ec638655d09f8db (patch) | |
tree | 56d48a2888f761b0c63479d6f2acc11966dd5018 /plugins/video_multidownload | |
parent | 512d567e3b66002127eb4fb96040d7979050e97b (diff) | |
download | video-38373b18497493630ba298df1ec638655d09f8db.tar.gz video-38373b18497493630ba298df1ec638655d09f8db.tar.bz2 |
Some debugging for plugins.
Patch #69330 by geodan (http://drupal.org/user/37266)
Allow users to edit own videos:
This patch adds an 'edit own videos' permission to allow users
to edit their own video nodes without having the 'administer nodes' privelage.
Diffstat (limited to 'plugins/video_multidownload')
-rw-r--r-- | plugins/video_multidownload/video_multidownload.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/video_multidownload/video_multidownload.module b/plugins/video_multidownload/video_multidownload.module index ddbba8e..e912c19 100644 --- a/plugins/video_multidownload/video_multidownload.module +++ b/plugins/video_multidownload/video_multidownload.module @@ -103,7 +103,7 @@ function video_multidownload_form_alter($form_id, &$form) { /** * Implementation of hook_nodeapi() */ -function video_upload_nodeapi(&$node, $op, $teaser) { +function video_multidownload_nodeapi(&$node, $op, $teaser) { if($node->type == 'video') { switch ($op) { |