Sehe gerade das dort der selbe Fehler ist, wie es bei dem Addon für die index.php gewesen war - werde es nachher mal fixen.
Zum aktualisieren bitte diesen Code verwenden:
Open: portal.php
Find:
Code: Alles auswählen
include($phpbb_root_path . 'gallery/includes/functions_recent.' . $phpEx);
$display = array(
'name' => true,
'poster' => true,
'time' => true,
'views' => true,
'ratings' => false,
'comments' => false,
'album' => true,
);
/**
* rows numeric default 1,
* columns numeric default 4,
* display array,
* modes string(recent|random|both),
*/
recent_gallery_images(1, 4, $display, 'both');
Replace With: Code: Alles auswählen
$gallery_root_path = GALLERY_ROOT_PATH;
include($phpbb_root_path . $gallery_root_path . 'includes/functions_recent.' . $phpEx);
$display = array(
'name' => true,
'poster' => true,
'time' => true,
'views' => true,
'ratings' => false,
'comments' => false,
'album' => true,
);
/**
* rows numeric default 1,
* columns numeric default 4,
* display array,
* modes string(recent|random|comment|!recent|!random|!comment|all), Exp: '!recent' means random + comment
*/
recent_gallery_images(1, 4, $display, 'all');
NACHTRAG: Ist gefixt, jetzt stimmt die Update-Anleitung die nickvergessen verlinkt hat wieder...
NACHTRAG2: Hier gibt es die aktuelle Version in Zukunft immer zum Downloaden:
http://www.flying-bits.org/viewtopic.php?p=5132#p5132 
Gruß Chris