I'm unable to add new photos to a created album.
I've found the error in the code, in "album_page" method the $user->uid variable it's used (line 141 on album.module) to see if the user has permission to add images, but $user object it's not initialized, so I added "global $user" before the if sentence and it just works.

CommentFileSizeAuthor
#2 album_3.module7.94 KBdeNuo
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dboomerang’s picture

Adding
global $user;

Didnt work for me, maybe i added at the wrong place?
Can anyone advise?

deNuo’s picture

FileSize
7.94 KB

Here's the module file, updated to allow additional photos to already existent albums!