Plugin Directory

Changeset 646448


Ignore:
Timestamp:
12/31/2012 05:41:44 PM (13 years ago)
Author:
hberberoglu
Message:

bug fix 1.5.8

Location:
wp-favorite-posts/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-favorite-posts/trunk/readme.txt

    r645912 r646448  
    66Requires at least: 2.0.2
    77Tested up to: 3.5
    8 Stable tag: 1.5.7.1
     8Stable tag: 1.5.8
    99
    1010Allows visitors to add favorite posts. This plugin use cookies for saving data so
     
    2929Rejected URIs".
    3030
    31 See [more details about plugin](http://nxsn.com/projects/wp-favorite-posts/)
     31If you need support [create a topic on support forum](http://wordpress.org/support/plugin/wp-favorite-posts)
     32
     33For thank me [go here](http://nxsn.com/projects/wp-favorite-posts/) or [make a donation](http://nxsn.com/donate/)
    3234
    3335== Installation ==
     
    5052
    5153== Changelog ==
     54= 1.5.8 (2012-12-31) =
     55* BUGFIX: fixed fake favorite possiblity bug. Thanks to Marian (http://nxsn.com/projects/wp-favorite-posts/comment-page-11/#comment-16505)
     56
    5257= 1.5.7 (2012-12-29) =
    5358* Automatic show option added to settings screen. You can configure to show "add/remove favorite" link before or after post content.
     
    7984* Show only published posts on most favorited posts widget
    8085
    81 = 1.4.3 =
    82 2010-04-13
     86= 1.4.3 (2010-04-13) =
    8387* Admin can write html codes to label settings (on admin page)
    8488* Added "wpfp_link_html" and "wpfp_remove_favorite_link" filters.
    8589
    86 = 1.4.3 =
    87 2010-04-09
     90= 1.4.3 (2010-04-09) =
    8891* Fix: same remove link for all posts on index
    8992* better wpfp.js: remove li which on favorites page.
     
    139142[wpfp-link] to the post content.
    140143
    141 = 1.1.6 (2009-03-05)=
     144= 1.1.6 (2009-03-05) =
    142145* Fixed ajax problem.
    143146
    144 = 1.1.5 (2009-03-02)=
     147= 1.1.5 (2009-03-02) =
    145148* Added rel="nofollow" to links.
    146149* Favorite posts title language problem solved.
     
    155158* Added favorite statistic feature.
    156159
    157 = 1.2 (2009-04-26)=
     160= 1.2 (2009-04-26) =
    158161* Added database integration.
    159162- If a user logged in then favorites data will save to database instead of cookies.
     
    161164* Added "only registered users can favorite" option.
    162165
    163 = 1.1.7 (2009-03-10)=
     166= 1.1.7 (2009-03-10) =
    164167* Fixed duplicate loading image problem
    165168* Added [wpfp-link] feature;
     
    167170[wpfp-link] to the post content.
    168171
    169 = 1.1.6 (2009-03-05)=
     172= 1.1.6 (2009-03-05) =
    170173* Fixed ajax problem.
    171174
    172 = 1.1.5 (2009-03-02)=
     175= 1.1.5 (2009-03-02) =
    173176* Added rel="nofollow" to links.
    174177* Favorite posts title language problem solved.
  • wp-favorite-posts/trunk/wp-favorite-posts.php

    r645912 r646448  
    44Plugin URI: http://nxsn.com/my-projects/wp-favorite-posts-plugin/
    55Description: Allows users to add favorite posts. This plugin use cookies for saving data so unregistered users can favorite a post. Put <code>&lt;?php wpfp_link(); ?&gt;</code> where ever you want on a single post. Then create a page which includes that text : <code>{{wp-favorite-posts}}</code> That's it!
    6 Version: 1.5.7.1
     6Version: 1.5.8
    77Author: Huseyin Berberoglu
    88Author URI: http://nxsn.com
    99
    1010*/
    11 
    1211
    1312/*
     
    7170function wpfp_do_add_to_list($post_id) {
    7271    if (wpfp_check_favorited($post_id))
    73         return true;
     72        return false;
    7473    if (is_user_logged_in()) {
    7574        return wpfp_add_to_usermeta($post_id);
Note: See TracChangeset for help on using the changeset viewer.