Ignore:
Timestamp:
Aug 2, 2012, 3:12:47 PM (12 years ago)
Author:
cljosse
Message:

[extensions] Autosize fix compatibility with 2.4, clean up...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Autosize/include/affiche.php

    r17192 r17308  
    1818if (isset($_COOKIE['picture_deriv']))
    1919  {
    20   if (isset($_COOKIE['img_w']))
    21   $cookies =  '"'.$_COOKIE['img_w']." x ".  $_COOKIE['img_h'] .'"';
     20  if (isset($_COOKIE['theImageWidth']))
     21  $cookies =  '"'.$_COOKIE['theImageWidth']." x ".  $_COOKIE['theImageHeight'] .'"';
    2222
    2323    if ( array_key_exists($_COOKIE['picture_deriv'], ImageStdParams::get_defined_type_map()) )
     
    5353          $src= $derivative->src_image ;
    5454       
    55     }
    56  
    57 
     55    }
    5856 
    5957$img_width=isset($imgScaledWH)?$imgSizeWH[0]:"480";
     
    9896  $options[$value] = $type_size;   
    9997
    100 //======================================================     
     98//===================
     99$value=0;
     100$liste_type="";
     101foreach ($img_all as $img_select){
     102          $imgSizeWH  =  $img_select->get_size();       
     103          $img_type  =  $img_select->get_type();       
     104          $img_url  = $img_select->get_url(); 
     105
     106          $liste_type .= $img_type.",".$img_url.",".$imgSizeWH[0] .",".$imgSizeWH[1]."|" ;
     107          if(strtolower($img_type)=="original") break ;
     108
     109
     110
     111
     112//===================================     
    101113       
    102114        $template->assign(
     
    105117            'cookies' =>  $cookies ,
    106118            'deriv_type' =>$deriv_type ,
     119            'liste_type' => $liste_type ,
    107120            'webmaster_type' => array(
    108121                                            'OPTIONS' => $options,
Note: See TracChangeset for help on using the changeset viewer.