Plugin Directory

Changeset 360463


Ignore:
Timestamp:
03/15/2011 10:21:00 PM (15 years ago)
Author:
fd
Message:

Fixed compatibility issue with Google Webmaster Tools

Location:
feedburner-plugin/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • feedburner-plugin/trunk/fdfeedburner.php

    r342014 r360463  
    66Author: John Watson
    77Author URI: http://flagrantdisregard.com/
    8 Version: 1.43
     8Version: 1.44
    99
    1010Copyright (C) Sat Feb 18 2006 John Watson
     
    160160    // Do nothing if feedburner is the user-agent
    161161    if (preg_match('/feedburner/i', $_SERVER['HTTP_USER_AGENT'])) return;
     162   
     163    // Avoid redirecting Googlebot to avoid sitemap feeds issues
     164    // http://www.google.com/support/feedburner/bin/answer.py?hl=en&answer=97090
     165    if (preg_match('/googlebot/i', $_SERVER['HTTP_USER_AGENT'])) return;
    162166   
    163167    // Do nothing if not configured
  • feedburner-plugin/trunk/readme.txt

    r351353 r360463  
    3030== Changelog ==
    3131
     32= 1.44 =
     33* Fixed compatibility issue with Google Webmaster Tools.
     34Avoid redirecting Googlebot to avoid sitemap feeds issues
     35(http://www.google.com/support/feedburner/bin/answer.py?hl=en&answer=97090).
     36Patch contributed by Ivan Yarych.
     37
    3238= 1.43 =
    3339* Added nonce verification (security) patch from Ulf Härnhammar <ulfharn@gmail.com>
Note: See TracChangeset for help on using the changeset viewer.