Closed (outdated)
Project:
Bibliography Module
Version:
6.x-1.5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Jun 2009 at 13:16 UTC
Updated:
21 Dec 2018 at 15:17 UTC
Jump to comment: Most recent
Comments
Comment #1
rjerome commentedSorry about that, I see the problem and if you want an immediate solution, just edit the biblio.module file and add TRUE to the end of line 281 (which is the "edit all biblio entries" line) like this ( you can omit the "line 281..." comment of course)...
Comment #2
lifepillar commentedThanks, that fixes the problem.
Comment #4
michaeltt commentedI found a related bug where users cannot edit their own content. Module code (280) is
case 'update':
if (user_access('edit all biblio entries')) return TRUE;
if (user_access('edit own biblio entries') && $user->uid != $node->uid) return FALSE;
break;
Editing it
case 'update':
if (user_access('edit all biblio entries')) return TRUE;
if (user_access('edit own biblio entries') && $user->uid != $node->uid) return FALSE;
if (user_access('edit own biblio entries') && $user->uid = $node->uid) return TRUE;
break;
Fixed the problem
Comment #5
rjerome commentedThat should be a double equals sign... but otherwise I'll include it in the code.
Comment #6
liam morlandThis version is no longer maintained. If this issue is still relevant to the Drupal 7 version, please re-open and provide details.