Ignore:
Timestamp:
Jul 30, 2009, 10:58:32 PM (15 years ago)
Author:
tiico
Message:

Suppress render for comment and author
Add double select in piclenswall admin page + jquery
Add compatibility with wat.tv video and correct rdd feed to adapt with cooliris 1.11
Correct %I2 param for parser : without picture name, display picture file
Suppress slashes in "name" and "descriptions" parameters
Change version to 0.4.1

File:
1 edited

Legend:

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

    r3649 r3708  
    4949        $me->my_config['piclens_sort_cat'] = 1;         // defaut PIWIGO
    5050
    51   $me->my_config['piclens_rss_name'] = $_POST['piclens_rss_name'];
    52   $me->my_config['piclens_rss_desc'] = $_POST['piclens_rss_desc'];
     51  $me->my_config['piclens_rss_name'] = stripslashes($_POST['piclens_rss_name']);
     52  $me->my_config['piclens_rss_desc'] = stripslashes($_POST['piclens_rss_desc']);
    5353  $me->my_config['piclens_exclude_double'] = isset($_POST['piclens_exclude_double']);
    5454  $me->my_config['piclens_maxcomment_nb'] = $_POST['piclens_maxcomment_nb'];
     
    138138        'PICLENS_VIDEO'         =>  $me->my_config['piclens_video'] ? 'checked="checked"' : '',
    139139        'PICLENS_CAT_VIEW'      => $me->my_config['piclens_cat_view'] ? 'checked="checked"' : '',
    140         'PICLENS_RSS_NAME'      =>  $me->my_config['piclens_rss_name'],
    141         'PICLENS_RSS_DESC'      =>   $me->my_config['piclens_rss_desc'],
     140        'PICLENS_RSS_NAME'      =>  stripslashes($me->my_config['piclens_rss_name']),
     141        'PICLENS_RSS_DESC'      =>   stripslashes($me->my_config['piclens_rss_desc']),
    142142        'PICLENS_EXCLUDE_DOUBLE'        =>  $me->my_config['piclens_exclude_double'] ? 'checked="checked"' : '',
    143143        'PICLENS_MAXCOMMENT_NB'         => $me->my_config['piclens_maxcomment_nb'],
Note: See TracChangeset for help on using the changeset viewer.