Plugin Directory

Changeset 498802


Ignore:
Timestamp:
02/01/2012 09:40:06 PM (14 years ago)
Author:
andykillen
Message:

1.60.6 twitter fix, only effects some blogs. very werid!

Location:
share-and-follow/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • share-and-follow/trunk/readme.txt

    r498192 r498802  
    66Requires at least: 3.2
    77Tested up to: 3.3.1
    8 Stable tag: 1.60.5
     8Stable tag: 1.60.6
    99
    1010Add Share Icons, Follow Links, Facebook Like, Twitter Tweet and other buttons on your site in the way you want. Simple & adaptable social networking.
     
    298298== Changelog ==
    299299
     300= 1.60.6 =
     301
     302Found infrequent problem with twitter sharing on some blogs.  fixed
    300303
    301304= 1.60.5 =
     
    838841== Upgrade Notice ==
    839842
     843= 1.60.6 =
     844
     845Found infrequent problem with twitter sharing on some blogs.  fixed
     846
    840847= 1.60.5 =
    841848
  • share-and-follow/trunk/share-and-follow.php

    r498192 r498802  
    33Plugin Name: Share and Follow
    44Plugin URI: http://share-and-follow.com/wordpress-plugin/
    5 Version: 1.60.5
     5Version: 1.60.6
    66Author: Andy Killen
    77Author URI: http://phat-reaction.com
     
    10211021                             }
    10221022                         else{
    1023                              $result="<a rel=\"".$rel."\" target=\"".$target."\" href=\"".$this->replaceKeyWordsInURL($sites[$css_class]['share_url'], ShareAndFollow::shortenURL ($page_link, $page_id), $page_title, $page_excerpt )."\" title=\"".$this->replaceKeyWordsInPopup ($page_id, $page_title, $popup_text)."\" >";
     1023                             $result="<a rel=\"".$rel."\" target=\"".$target."\" href=\"".$this->replaceKeyWordsInURL($sites[$css_class]['share_url'], $this->shortenURL ($page_link, $page_id), $page_title, $page_excerpt )."\" title=\"".$this->replaceKeyWordsInPopup ($page_id, $page_title, $popup_text)."\" >";
    10241024                             if ($this->_options['list_style']!='text_only'){
    10251025                                 $result.="<img " . $image_attributes  . "  /> ";
     
    10281028                         break;
    10291029                     case "twitter":
    1030                          if ($css_images=="yes"){$result = "<a rel=\"".$rel."\" target=\"".$target."\" ".$this->doImageStyle($css_class, $size, $list_style)." href=\"".$this->get_twitter_suffix ($page_id,ShareAndFollow::replaceKeyWordsInURL($sites[$css_class]['share_url'], ShareAndFollow::shortenURL ($page_link, $page_id), ShareAndFollow::get_twitter_text($page_id), $page_excerpt ))."\" title=\"".$this->replaceKeyWordsInPopup ($page_id, $page_title, $popup_text)."\"><span class=\"head\">".stripslashes  ($share_text)."</span></a>";}
    1031                          else{$result="<a " . $attributes . " href=\"".$this->get_twitter_suffix ($page_id, ShareAndFollow::replaceKeyWordsInURL($sites[$css_class]['share_url'], ShareAndFollow::shortenURL ($page_link, $page_id), ShareAndFollow::get_twitter_text($page_id), $page_excerpt ))."\"  >";
     1030                         if ($css_images=="yes"){$result = "<a rel=\"".$rel."\" target=\"".$target."\" ".$this->doImageStyle($css_class, $size, $list_style)." href=\"".$this->get_twitter_suffix ($page_id,$this->replaceKeyWordsInURL($sites[$css_class]['share_url'], $this->shortenURL ($page_link, $page_id), $this->get_twitter_text($page_id), $page_excerpt ))."\" title=\"".$this->replaceKeyWordsInPopup ($page_id, $page_title, $popup_text)."\"><span class=\"head\">".stripslashes  ($share_text)."</span></a>";}
     1031                         else{$result="<a " . $attributes . " href=\"".$this->get_twitter_suffix ($page_id, $this->replaceKeyWordsInURL($sites[$css_class]['share_url'], $this->shortenURL ($page_link, $page_id), $this->get_twitter_text($page_id), $page_excerpt ))."\"  >";
    10321032                         if ($this->_options['list_style']!='text_only'){
    10331033                             $result.="<img " . $image_attributes  . "  /> ";
Note: See TracChangeset for help on using the changeset viewer.