hilft dir das?:
##############################################################
## MOD Title: Moderator permissions fix for Photo Album Addon v2 for phpBB2
## MOD Author: nuffmon -
nuffmon@hotmail.com
## MOD Description:
##
## Solves moderator permissions where they cannot delete or edit photos
##
## Tested with: phpBB 2.0.5 - PHP4 (I recommend the up-to-date version)
## MySQL 3.23.x and Smartor's Photo Album Addon v2 for phpBB2
##
## MOD Version:
##
## Installation Level: easy
## Installation Time: 1 minute
##
## Files To Edit: 2
## album_delete.php
## album_edit.php
##
##############################################################
## Author Notes:
##
## I've tested it myself but i'm sure someone will find a problem!
##
##############################################################
## Before Adding This MOD To Your Photo Album,
## You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]-------------------------------------------------------
#
album_delete.php
#
#-----[ FIND ]----------------------------------------
#
if( (!$album_user_access['moderator']) or ($userdata['user_level'] != ADMIN) )
#
#-----[ Replace, with ]----------------------------------
#
if( (!$album_user_access['moderator']) and ($userdata['user_level'] != ADMIN) )
#
#-----[ OPEN ]-------------------------------------------------------
#
album_edit.php
#
#-----[ FIND ]----------------------------------------
#
if( (!$album_user_access['moderator']) or ($userdata['user_level'] != ADMIN) )
#
#-----[ Replace, with ]----------------------------------
#
if( (!$album_user_access['moderator']) and ($userdata['user_level'] != ADMIN) )
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM