Plugin Directory

Changeset 516609


Ignore:
Timestamp:
03/09/2012 05:00:09 AM (14 years ago)
Author:
michaelbeacom
Message:

adding version 1.4.3

Location:
sharing-is-caring/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sharing-is-caring/trunk/readme.txt

    r515678 r516609  
    8383* Fixed: using the last post in the loop when on homepage in some instances.
    8484
     85= 1.4.3 =
     86* Fixed: using the homepage url for every post on the homepage
     87
    8588== Upgrade Notice ==
    8689
     
    114117= 1.4.2 =
    115118* minor bugfix with shortcode using the wrong url in some uses on the homepage
     119
     120= 1.4.3 =
     121* bugfix for posts on the homepage using the homepage url
  • sharing-is-caring/trunk/sharing-is-caring.php

    r515678 r516609  
    44Plugin URI: http://michaelbea.com/sharing-is-caring/
    55Description: Displays the social widgets from Facebook, Twitter, Google+ and Pinterest with your posts.  Most options for the buttons are customizable in the admin panel.  Also adds some meta tags for opengraph and schema.org.
    6 Version: 1.4.2
     6Version: 1.4.3
    77Author: Michael Beacom
    88Author URI: http://michaelbea.com
     
    616616   
    617617    $widgets= array();
    618     if(is_single() || is_page()) {
     618    if(in_the_loop()) {
    619619        $the_link = strip_tags(get_permalink());
    620         $the_title = strip_tags(get_the_title());       
     620        $the_title = strip_tags(get_the_title());
    621621    } else {
    622622        $the_link = get_option('siteurl');
Note: See TracChangeset for help on using the changeset viewer.