Changeset 6450


Ignore:
Timestamp:
Jun 2, 2010, 8:59:24 PM (14 years ago)
Author:
EXFTB
Message:

2.1.d fix bug with IE6 & IE8

Location:
extensions/LLGBO2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/LLGBO2/main.inc.php

    r6428 r6450  
    22/*
    33Plugin Name: Look_like_gbo2
    4 Version:  2.1.b
     4Version:  2.1.d
    55Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=251
    66Author: Ex-Ftb 
     
    1010  2.1.a compliant 2.1 Piwigo
    1111  2.1.b fix minor bugs in administration
    12    2.1.c Bug with simple  */
     12  2.1.c compatibility with simple
     13  2.1.d bug Css with IE6 & IE8   */
    1314
    1415if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
     
    1718global $conf;
    1819
    19 define ('LLGBO_INFO_VERSION','2.1.b');
     20define ('LLGBO_INFO_VERSION','2.1.d');
    2021if (!defined('LLGBO_PATH'))
    2122{define('LLGBO_PATH' , PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/');}
  • extensions/LLGBO2/template/picture_content.tpl

    r6234 r6450  
    1010        {/if}
    1111{/if}
    12 
     12{if isset($USEMAP) }
     13                <!--  navigation on picture  -->
     14                <map id="prevnext" name="prevnext"> 
     15                {if isset($previous)}
     16                <area shape="rect" coords="{$LEFT_X1},{$LEFT_Y1},{$LEFT_X2},{$LEFT_Y2}" href="{$previous.U_IMG}" title="{'Previous'|@translate} : {$PREVTHUMBTITLE}" {if isset($PREVTHUMB)}{$PREVTHUMB} {/if} alt="" rel="prev">
     17                {/if}   
     18                <area shape="rect" coords="{$UP_X1},{$UP_Y1},{$UP_X2},{$UP_Y2}" href="{$U_UP}" title="{'Thumbnails'|@translate}" alt="" rel="up" >
     19                {if isset($next) }
     20                <area shape="rect" coords="{$RIGHT_X1},{$RIGHT_Y1},{$RIGHT_X2},{$RIGHT_Y2}" href="{$next.U_IMG}" title="{'Next'|@translate} : {$NEXTTHUMBTITLE}" {if isset($NEXTTHUMB)}{$NEXTTHUMB} {/if} alt="" rel="next">
     21                {/if}
     22                {if isset($high) }
     23                        <area shape="rect" coords="{$HIGH_X1},{$HIGH_Y1},{$HIGH_X2},{$HIGH_Y2}"
     24                        {$HDHREF}
     25                        >
     26                {/if}   
     27                   
     28                </map>
     29{/if}
    1330{if  isset($FRAME_BEGIN)}
    1431        {if isset($TITLE_FRAME)}
     
    2340                       
    2441                        {if isset($COMMENT_IMG)}
    25                                 title="{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}" {else} title="{$current.TITLE|@replace:'"':' '} - {$ALT_IMG}" >
     42                                title="{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}" {else} title="{$current.TITLE|@replace:'"':' '} - {$ALT_IMG}"
    2643                        {/if}
     44                        >
    2745                        {if isset($high) and !isset($USEMAP) }
    2846                        </a>
     
    3048                       
    3149        {$FRAME_END}
    32 </div>
     50</div> <!-- end GBO -->
    3351{/if}
    3452        {if isset($high) }
     
    3856         {/if}
    3957
    40 {if isset($USEMAP) }
    41                 <!--  navigation on picture  -->
    42                 <map id="prevnext" name="prevnext"> 
    43                 {if isset($previous)}
    44                 <area shape="rect" coords="{$LEFT_X1},{$LEFT_Y1},{$LEFT_X2},{$LEFT_Y2}" href="{$previous.U_IMG}" title="{'Previous'|@translate} : {$PREVTHUMBTITLE}" {if isset($PREVTHUMB)}{$PREVTHUMB} {/if} alt="" rel="prev">
    45                 {/if}   
    46                 <area shape="rect" coords="{$UP_X1},{$UP_Y1},{$UP_X2},{$UP_Y2}" href="{$U_UP}" title="{'Thumbnails'|@translate}" alt="" rel="up" >
    47                 {if isset($next) }
    48                 <area shape="rect" coords="{$RIGHT_X1},{$RIGHT_Y1},{$RIGHT_X2},{$RIGHT_Y2}" href="{$next.U_IMG}" title="{'Next'|@translate} : {$NEXTTHUMBTITLE}" {if isset($NEXTTHUMB)}{$NEXTTHUMB} {/if} alt="" rel="next">
    49                 {/if}
    50                 {if isset($high) }
    51                         <area shape="rect" coords="{$HIGH_X1},{$HIGH_Y1},{$HIGH_X2},{$HIGH_Y2}"
    52                         {$HDHREF}       
    53                         >
    54                 {/if}   
    55                    
    56                 </map>
    57 {/if}
     58
    5859       
Note: See TracChangeset for help on using the changeset viewer.