Plugin Directory

Changeset 838344


Ignore:
Timestamp:
01/14/2014 12:32:37 PM (12 years ago)
Author:
commentluv
Message:

tagging 2.93.4
fix utf 8 error (maybe)
update vietnamese

Location:
commentluv
Files:
154 added
2 edited

Legend:

Unmodified
Added
Removed
  • commentluv/trunk/commentluv.php

    r821035 r838344  
    33Plugin URI: http://comluv.com/
    44Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
    5 Version: 2.93.3
     5Version: 2.93.4
    66Author: Andy Bailey
    77Author URI: http://www.commentluv.com
     
    2929        var $plugin_dir;
    3030        var $db_option = 'commentluv_options';
    31         var $version = "2.93.3";
     31        var $version = "2.93.4";
    3232        var $slug = 'commentluv-options';
    3333        var $localize;
     
    13241324            '<channel>'.
    13251325            '<title><![CDATA['. get_bloginfo('title') .']]></title>'.
    1326             '<link>'. get_bloginfo('home') .'</link>'.
     1326            '<link>'. get_bloginfo('url') .'</link>'.
    13271327            '<description><![CDATA['. get_bloginfo('description') .']]></description>'.
    13281328            '<language>'.get_bloginfo('language').'</language>'.
     
    13451345            }
    13461346            $feed .= '</channel></rss>';
    1347             ob_end_clean();                                                       
     1347            ob_end_clean(); 
     1348            // force utf characters
     1349            $feed = utf8_encode($feed);                                                     
    13481350            header("Content-Type: application/atom+xml; charset=".get_bloginfo('charset'));
    13491351            echo $feed;   
  • commentluv/trunk/readme.txt

    r821035 r838344  
    55Requires at least: 3.6
    66Tested up to: 3.8
    7 Stable tag: 2.93.3
     7Stable tag: 2.93.4
    88   
    99Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
     
    9696== ChangeLog ==
    9797
     98= 2.93.4 =
     99
     100* updated : experimental - force to utf8 characters when outputting feed
     101* updated : vietnamese language update
     102
    98103= 2.93.3 =
    99104
Note: See TracChangeset for help on using the changeset viewer.