Changeset 13912 for extensions


Ignore:
Timestamp:
Apr 5, 2012, 12:04:11 AM (12 years ago)
Author:
flop25
Message:

compatible 2.4 and 2.3 (use of PHPWG_VERSION)

File:
1 edited

Legend:

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

    r11948 r13912  
    5050        global $template;
    5151  $search = 'href="{$thumbnail.URL}"';
    52  
    53   $replacement = 'href="{$thumbnail.URL}" imgsrc="{$thumbnail.FILE_PATH}"';
    54 
     52  if ( defined('PHPWG_VERSION') and strpos(PHPWG_VERSION, "2.4")!==false )
     53  {
     54  $replacement = 'href="{$thumbnail.URL}" {define_derivative name=\'derivative_imgprev\' width=$imgpreview.width height=$imgpreview.height crop=false}{assign var=d_imgprev value=$pwg->derivative($derivative_imgprev, $thumbnail.src_image)} imgsrc="{$d_imgprev->get_url()}"';
     55  }
     56  else {
     57    $replacement = 'href="{$thumbnail.URL}" imgsrc="{$thumbnail.FILE_PATH}"';
     58  }
    5559  $content= str_replace($search, $replacement, $content);
    5660
Note: See TracChangeset for help on using the changeset viewer.