Ignore:
Timestamp:
Nov 28, 2009, 11:29:03 AM (14 years ago)
Author:
Gotcha
Message:

[extension] piwishack - v0.2
bug:1293

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/piwishack/include/class.inc.php

    r4360 r4376  
    111111           Affichage de la miniature sur des sites. Cliquable.
    112112           EXEMPLE
    113            <a href="{$ROOT_WAY}{$current.U_IMG}"><img src="{$ROOT_WAY}{$current.THUMB_SRC|@replace:'./':''}" /></a>
     113           <a href="{$ROOT_WAY}{$current.U_IMG}" target=_blank><img src="{$ROOT_WAY}{$current.THUMB_SRC|@replace:'./':''}" /></a>
    114114           */
    115115            $S .= '<a href=\"'.
     
    118118              'image_id' => $row['id'],
    119119              'image_file' => $row['file'],
    120               )).'\"><img src=\"'.
     120              )).'\" target=_blank><img src=\"'.
    121121                  str_replace('/./', '/', get_thumbnail_url($row)).'\" /></a>';
    122122            $S .= '\n\n';
     
    267267           Affichage de la vue normale sur des sites. Non cliquable.
    268268           EXEMPLE
    269            <a href="{$ROOT_WAY}{$current.U_IMG}"><img src="{$ROOT_WAY}{$SRC_IMG|@replace:'./':''}" /></a>
     269           <a href="{$ROOT_WAY}{$current.U_IMG}" target=_blank><img src="{$ROOT_WAY}{$SRC_IMG|@replace:'./':''}" /></a>
    270270           */
    271271            $S .= '<a href=\"'.
     
    274274              'image_id' => $row['id'],
    275275              'image_file' => $row['file'],
    276               )).'\"><img src=\"'.get_absolute_root_url().
     276              )).'\" target=_blank><img src=\"'.get_absolute_root_url().
    277277                  str_replace('/./', '/', get_image_url($row)).'\" /></a>';
    278278                $S .= '\n\n';
Note: See TracChangeset for help on using the changeset viewer.