fixed path problem (missing "/")
[phpfspot.git] / themes / default / templates / photo_index.tpl
index fa63b31aa043e47886bd031394beb04482eea044..ddc3229df5a6b00ed6da0dafa0a99a5fd7890e68 100644 (file)
@@ -5,13 +5,13 @@
 <div class="header">
  <div class="header_title">
   <b>Photo Index</b>
-  {if $searchfor }
+  {if isset($searchfor) }
    {if $count == 1}
     {$count} image is the result for your search about "{$searchfor}".
    {else}
     {$count} images are the result for your search about "{$searchfor}".
    {/if}
-  {elseif $tag_result}
+  {elseif isset($tag_result)}
    {if $count == 1}
     {$count} image has been found for the selected tags.
    {else}
     {$count} images have been found.
    {/if}
   {/if}
-  {if $from_date && $to_date }
+  {if isset($from_date) && isset($to_date) }
    <br />
    Results are limited to a date within {$from_date} to {$to_date}.
   {/if}
  </div>
  <div class="header_menu">
-  {if $slideshow_link }
+  {if isset($slideshow_link) }
    <a href="{$slideshow_link}" title="Slideshow" target="_blank"><img src="{$web_path}/resources/slideshow.png" />&nbsp;Slideshow</a>
   {/if}
-  {if $extern_link }
+  {if isset($extern_link) }
    <a href="{$extern_link}" title="Use this link to return to the current view"><img src="{$web_path}/resources/link.png" />&nbsp;External Link</a>
   {/if} 
-  {if $export_link }
+  {if isset($export_link) }
    <a href="{$export_link}" target="_blank" title="this will open a new browser window where you can export this page in several formats"><img src="{$web_path}/resources/export.png" />&nbsp;Export</a>
   {/if}
-  {if $rss_link }
+  {if isset($rss_link) }
    <a href="{$rss_link}" target="_blank" title="RSS feed"><img src="{$web_path}/resources/rss.png" />&nbsp;RSS-Feed</a>
   {/if}
  </div>
@@ -48,7 +48,7 @@
 <!-- if result of a tag-search is displayed, show the selected tags
      with some small pictures in a bar. -->
 
-{ if $tag_result }
+{ if isset($tag_result) }
 <!-- seperator -->
  <div class="tagresult"></div>
  <!-- /seperator -->
 
  {section name="thumb" loop=$thumbs step=1}
 
-  {if $images[thumb] }
+  {if isset($images[thumb]) }
 
    <div class="thumb" onmouseover="setBackGrdColor(this, 'mouseover');" onmouseout="setBackGrdColor(this, 'mouseout');" style="width: { $thumb_container_width }px; height: { $thumb_container_height }px;">
-    { if $user_friendly_url }
+    { if isset($user_friendly_url) }
     <a href="{$web_path}/photoview/{$images[thumb]}" onclick="showPhoto({$images[thumb]}, 'scrollup'); return false;" id="thumblink{$images[thumb]}" name="image{$img_id[thumb]}" class="thumblink" onfocus="click(this);" title="{$img_title[thumb]}">
     { else }
     <a href="{$web_path}/index.php?mode=showp&amp;id={$images[thumb]}" onclick="showPhoto({$images[thumb]}, 'scrollup'); return false;" id="thumblink{$images[thumb]}" name="image{$img_id[thumb]}" class="thumblink" onfocus="click(this);" title="{$img_title[thumb]}">
     {$img_name[thumb]}
     </a>
     <!-- show lightbox eyes, if enabled -->
-    { if $use_lightbox }
+    { if isset($use_lightbox) }
     <a href="{$web_path}/phpfspot_img.php?idx={$images[thumb]}&amp;width={$preview_width}" alt="thumb_{$images[thumb]}" rel="lightbox[photoidx]" title="Preview of {$img_fullname[thumb]}"><img src="{$web_path}/resources/eyes.png" /></a>
     { /if }
     <!-- show F-Spot photo rating value, if available -->
-    { if $img_rating[thumb] }
+    { if isset($img_rating[thumb]) }
      <br />
      {section name="rating" loop=$img_rating[thumb] step=1}
       <img src="{$web_path}/resources/star.png" />
 
  <!-- the right nav arrow -->
  <div class="indexnavigationright">
- { if $next_url == "" }
+ { if !isset($next_url) || $next_url == "" }
   { if $count != 0 }
    <img src="{$web_path}/resources/arrow_right_gray.png" alt="last page reached" />
   { /if }
 
  <!-- the left nav arrow -->
  <div class="indexnavigationleft">
- { if $previous_url == "" }
+ { if !isset($previous_url) || $previous_url == "" }
   { if $count != 0 }
    <img src="{$web_path}/resources/arrow_left_gray.png" alt="first page reached" />
   { /if }
 
  <!-- the middle page selector -->
  <div class="indexnavigationcenter">
- { if $page_selector != "" }
+ { if isset($page_selector) && $page_selector != "" }
   {$page_selector}
  { /if}
  </div>
    var last_thumb;
 
    {section name="thumb" loop=$thumbs step=1}
-      {if $images[thumb] }
+      {if isset($images[thumb]) }
          image_urls[{counter}] = '{$web_path}/phpfspot_img.php?idx={$images[thumb]}&width={$width}';
          last_thumb = {$images[thumb]};
       {/if}