Plugin Directory

Changeset 1353288


Ignore:
Timestamp:
02/18/2016 09:36:05 AM (10 years ago)
Author:
pdamsten
Message:

Don't modify feeds. Patch from Faldrian

Location:
fullscreen-galleria
Files:
4 deleted
2 edited
14 copied

Legend:

Unmodified
Added
Removed
  • fullscreen-galleria/tags/1.5.1/galleria-fs.php

    r1347228 r1353288  
    55Plugin URI: http://torturedmind.org/
    66Description: Fullscreen gallery for Wordpress
    7 Version: 1.5.0
     7Version: 1.5.1
    88Author: Petri Damstén
    99Author URI: http://torturedmind.org/
     
    1212******************************************************************************/
    1313
    14 $fsg_ver = '1.5.0';
     14$fsg_ver = '1.5.1';
    1515$fsg_db_key = 'fsg_plugin_settings';
    1616
     
    930930  {
    931931    //error_log('content');
     932   
     933    // do not apply gallery to feed content
     934    if (is_feed()) {
     935      return $content;
     936    }
     937   
    932938    global $post;
    933939    if ($this->firstpostid == -1) {
  • fullscreen-galleria/tags/1.5.1/readme.txt

    r1347228 r1353288  
    8787
    8888== Changelog ==
     89= 1.5.1 =
     90* Don't modify RSS feeds but only content going to browsers
     91
    8992= 1.5.0 =
    9093* Support for infinite scroll (jetpack)
  • fullscreen-galleria/trunk/galleria-fs.php

    r1347228 r1353288  
    55Plugin URI: http://torturedmind.org/
    66Description: Fullscreen gallery for Wordpress
    7 Version: 1.5.0
     7Version: 1.5.1
    88Author: Petri Damstén
    99Author URI: http://torturedmind.org/
     
    1212******************************************************************************/
    1313
    14 $fsg_ver = '1.5.0';
     14$fsg_ver = '1.5.1';
    1515$fsg_db_key = 'fsg_plugin_settings';
    1616
     
    930930  {
    931931    //error_log('content');
     932   
     933    // do not apply gallery to feed content
     934    if (is_feed()) {
     935      return $content;
     936    }
     937   
    932938    global $post;
    933939    if ($this->firstpostid == -1) {
  • fullscreen-galleria/trunk/readme.txt

    r1347228 r1353288  
    8787
    8888== Changelog ==
     89= 1.5.1 =
     90* Don't modify RSS feeds but only content going to browsers
     91
    8992= 1.5.0 =
    9093* Support for infinite scroll (jetpack)
Note: See TracChangeset for help on using the changeset viewer.