Ignore:
Timestamp:
Mar 6, 2014, 3:05:35 PM (10 years ago)
Author:
plg
Message:

compatibility with Piwigo 2.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/piclens/admin/rssfeed.php

    r21238 r27570  
    6666foreach ( $thumb_list as $order ) //on parcours le tableau
    6767{
    68         $template->append('PlThumb',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_thumb'] == $i ? 'selected' : '')));
     68        $template->append('PlThumbs',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_thumb'] == $i ? 'selected' : '')));
    6969        $i++;   
    7070}
     
    7474foreach ( $normal_list as $order ) //on parcours le tableau
    7575{
    76         $template->append('PlNormal',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_normal'] == $i ? 'selected' : '')));
     76        $template->append('PlNormals',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_normal'] == $i ? 'selected' : '')));
    7777        $i++;   
    7878}
     
    8383foreach ( $order_list as $order ) //on parcours le tableau
    8484{
    85         $template->append('PlOrder',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_order'] == $i ? 'selected' : '')));
     85        $template->append('PlOrders',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_order'] == $i ? 'selected' : '')));
    8686        $i++;   
    8787}
     
    9191foreach ( $order_list as $order ) //on parcours le tableau
    9292{
    93         $template->append('PlOrderC',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_order_cat'] == $i ? 'selected' : '')));
     93        $template->append('PlOrderCs',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_order_cat'] == $i ? 'selected' : '')));
    9494        $i++;   
    9595}
     
    9999foreach ( $sort_list as $order ) //on parcours le tableau
    100100{
    101         $template->append('PlSort',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_sort'] == $i ? 'selected' : '')));
     101        $template->append('PlSorts',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_sort'] == $i ? 'selected' : '')));
    102102        $i++;   
    103103}
     
    108108foreach ( $sort_list as $order ) //on parcours le tableau
    109109{
    110         $template->append('PlSortC',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_sort_cat'] == $i ? 'selected' : '')));
     110        $template->append('PlSortCs',array('ID' => $i,'NAME' => $order,'SELECTED' => ($me->my_config['piclens_sort_cat'] == $i ? 'selected' : '')));
    111111        $i++;   
    112112}
Note: See TracChangeset for help on using the changeset viewer.