Öffnen: includes/functions.php
Finde:
Code: Alles auswählen
// Obtain number of new private messages if user is logged in
if (!empty($user->data['is_registered']))
{
Code: Alles auswählen
// "Your Personal Album"-Link in the Header
$gallery_root_path = GALLERY_ROOT_PATH;
if (!function_exists('load_gallery_config'))
{
$user->add_lang('mods/gallery');
include($phpbb_root_path . $gallery_root_path . 'includes/functions.' . $phpEx);
}
$template->assign_vars(array(
'U_YOUR_PERSONAL_GALLERY' => ($user->gallery['personal_album_id'] > 0) ? append_sid("{$phpbb_root_path}{$gallery_root_path}album.$phpEx", 'album_id=' . $user->gallery['personal_album_id']) : append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=gallery&mode=manage_albums'),
));
Öffnen: styles/prosilver/template/overall_header.html
Finde:
Code: Alles auswählen
<li class="icon-gallery"><a href="{U_GALLERY_MOD}" title="{L_GALLERY_EXPLAIN}">{L_GALLERY}</a></li>
Code: Alles auswählen
<!-- IF U_YOUR_PERSONAL_GALLERY -->
<li class="icon-gallery"><a href="{U_YOUR_PERSONAL_GALLERY}">{L_YOUR_PERSONAL_ALBUM}</a></li>
<!-- ENDIF -->
@Fusi öffne die Datei gallery/plugins/highslide/highslide.css finde dort folgenden Code:
Code: Alles auswählen
.highslide img {
border: 2px solid silver;
}