Show
Ignore:
Timestamp:
07/09/08 13:00:01 (5 months ago)
Author:
sidtheduck
Message:

+ Fix for ticket #177 - Deleting albums and collections
+ Fixed errors in "Air" theme comments.php and slideshow.php

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plog-content/themes/air/slideshow.php

    r552 r556  
    3636 
    3737<?php function generate_slideshow_interface() { 
    38         global $config; 
     38        global $config, $thumbnail_config; 
    3939        $large_link = ' 
    4040        <a accesskey="v" title="' . plog_tr('View Large Image') . '" href="javascript:slides.hotlink()"> 
    41                 <img src="'.$config["gallery_url"].'graphics/search.gif" width="16" height="16" alt="'. plog_tr('View Large Image') . '"/> 
     41                <img src="'.THEME_URL.'images/search.gif" width="16" height="16" alt="'. plog_tr('View Large Image') . '"/> 
    4242        </a>'; 
    4343 
    4444        $prev_url = ' 
    4545        <a accesskey="," title="' .plog_tr('Previous Image') . '" href="javascript:slides.previous();"> 
    46                 <img src="'.$config["gallery_url"].'graphics/rewind.gif" width="16" height="16" alt="' . plog_tr('Previous Image') . '" /> 
     46                <img src="'.THEME_URL.'images/rewind.gif" width="16" height="16" alt="' . plog_tr('Previous Image') . '" /> 
    4747        </a>'; 
    4848 
    4949        $next_url = ' 
    5050        <a accesskey="." title="' . plog_tr('Next Image') . '" href="javascript:slides.next();"> 
    51                 <img src="'.$config["gallery_url"].'graphics/fforward.gif" width="16" height="16" alt="' . plog_tr('Next Image') . '" /> 
     51                <img src="'.THEME_URL.'images/fforward.gif" width="16" height="16" alt="' . plog_tr('Next Image') . '" /> 
    5252        </a>'; 
    5353 
    5454        $stop_url = ' 
    5555        <a accesskey="x" title="'. plog_tr('Stop Slideshow') . '" href="javascript:slides.pause();"> 
    56                 <img src="'.$config["gallery_url"].'graphics/stop.gif" width="16" height="16" alt="' . plog_tr('Stop Slideshow') . '" /> 
     56                <img src="'.THEME_URL.'images/stop.gif" width="16" height="16" alt="' . plog_tr('Stop Slideshow') . '" /> 
    5757        </a>'; 
    5858 
    5959        $play_url = ' 
    6060        <a accesskey="s" title="'. plog_tr('Start Slideshow') . '" href="javascript:slides.play();"> 
    61                 <img src="'.$config["gallery_url"].'graphics/play.gif" width="16" height="16" alt="' .  plog_tr('Start Slideshow') . '" /> 
     61                <img src="'.THEME_URL.'images/play.gif" width="16" height="16" alt="' .  plog_tr('Start Slideshow') . '" /> 
    6262        </a>'; 
    6363 
    64         $output = '<div class="large-thumb-toolbar" style="width:'.$config["max_display_size"].'">'.$large_link.$prev_url.$stop_url.$play_url.$next_url.'</div>'; 
     64        $output = '<div class="large-thumb-toolbar" style="width:'.$thumbnail_config[THUMB_LARGE]["size"].'">'.$large_link.$prev_url.$stop_url.$play_url.$next_url.'</div>'; 
    6565 
    6666        $imgtag = '<img id="slideshow_image" class="photos-large" src="about:blank" title="" alt="" />';