Changeset 498802
- Timestamp:
- 02/01/2012 09:40:06 PM (14 years ago)
- Location:
- share-and-follow/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
share-and-follow.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
share-and-follow/trunk/readme.txt
r498192 r498802 6 6 Requires at least: 3.2 7 7 Tested up to: 3.3.1 8 Stable tag: 1.60. 58 Stable tag: 1.60.6 9 9 10 10 Add Share Icons, Follow Links, Facebook Like, Twitter Tweet and other buttons on your site in the way you want. Simple & adaptable social networking. … … 298 298 == Changelog == 299 299 300 = 1.60.6 = 301 302 Found infrequent problem with twitter sharing on some blogs. fixed 300 303 301 304 = 1.60.5 = … … 838 841 == Upgrade Notice == 839 842 843 = 1.60.6 = 844 845 Found infrequent problem with twitter sharing on some blogs. fixed 846 840 847 = 1.60.5 = 841 848 -
share-and-follow/trunk/share-and-follow.php
r498192 r498802 3 3 Plugin Name: Share and Follow 4 4 Plugin URI: http://share-and-follow.com/wordpress-plugin/ 5 Version: 1.60. 55 Version: 1.60.6 6 6 Author: Andy Killen 7 7 Author URI: http://phat-reaction.com … … 1021 1021 } 1022 1022 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)."\" >"; 1024 1024 if ($this->_options['list_style']!='text_only'){ 1025 1025 $result.="<img " . $image_attributes . " /> "; … … 1028 1028 break; 1029 1029 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 ))."\" >"; 1032 1032 if ($this->_options['list_style']!='text_only'){ 1033 1033 $result.="<img " . $image_attributes . " /> ";
Note: See TracChangeset
for help on using the changeset viewer.