Plugin Directory

Changeset 116239


Ignore:
Timestamp:
05/07/2009 08:51:47 PM (17 years ago)
Author:
retaggr
Message:
 
Location:
retaggr/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • retaggr/trunk/readme.txt

    r109222 r116239  
    66Requires at least: 2.0.4
    77Tested up to: 2.7.1
    8 Stable tag: 1.04
     8Stable tag: 1.05
    99
    1010Add retaggr.com functionality to your blog - image tagging of any image,and totally customizable Profile Cards.Demo and help at http://www.retaggr.com
     
    8181Modification to ensure no changes are made to any content going out to RSS feed.
    8282
    83 = 1.04 =
     83= 1.14 =
    8484Updates to ensure compatible with 2.7.1, minor cosmetics.
     85
     86= 1.15 =
     87Fix to correct RSS issue.
  • retaggr/trunk/retaggr.php

    r109222 r116239  
    55Description: Retaggr - Adds Retaggr social/business cards to your comments
    66Author: Retaggr
    7 Version: 1.14
     7Version: 1.15
    88Author URI: http://www.retaggr.com/
    99 * Min WP Version: 2.0.4
     
    1212
    1313
    14 // Register our activation hook, so we can set our default options:
    15 register_activation_hook(_FILE_,'ri_activate');
    16 
    17 function ri_activate() {
    18     /*
    19     $ri_opt_siteid = get_option('ri_siteid');
    20     if ( empty($ri_opt_size) ) {
    21         $defaults = ri_defaults();
    22         foreach ($defaults as $key => $val) {
    23             update_option($key, $val);
    24         }
    25     }*/
    26 }
    27 
    2814add_action('admin_head', 'ri_css');
    2915add_action('wp_head', 'ri_css');
     
    3117
    3218function ri_author($author){
     19    if (is_feed()) return $author;
    3320   
    3421    $email = get_the_author_email();
     
    9077
    9178function ri_retaggrcomment($text) {
     79    if (is_feed()) return $text;
     80
     81   
    9282    global $comment;
    9383    // emit retaggr card if email present
Note: See TracChangeset for help on using the changeset viewer.