Changeset 1271342
- Timestamp:
- 10/22/2015 08:24:48 PM (10 years ago)
- Location:
- osd-social-media-sharing
- Files:
-
- 18 added
- 4 edited
-
tags/3.5.3 (added)
-
tags/3.5.3/images (added)
-
tags/3.5.3/images/icon.png (added)
-
tags/3.5.3/images/icons.png (added)
-
tags/3.5.3/images/icons.svg (added)
-
tags/3.5.3/includes (added)
-
tags/3.5.3/includes/OSDSocialShare.php (added)
-
tags/3.5.3/includes/admin_js.js (added)
-
tags/3.5.3/includes/admin_style.css (added)
-
tags/3.5.3/includes/global_settings.php (added)
-
tags/3.5.3/includes/installation_actions.php (added)
-
tags/3.5.3/includes/js.php (added)
-
tags/3.5.3/includes/post_settings.php (added)
-
tags/3.5.3/includes/style.css (added)
-
tags/3.5.3/lang (added)
-
tags/3.5.3/osd_social_media_sharing.php (added)
-
tags/3.5.3/readme.txt (added)
-
tags/3.5.3/uninstall.php (added)
-
trunk/includes/OSDSocialShare.php (modified) (1 diff)
-
trunk/includes/post_settings.php (modified) (1 diff)
-
trunk/osd_social_media_sharing.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
osd-social-media-sharing/trunk/includes/OSDSocialShare.php
r1165719 r1271342 124 124 private function share_link($platform, $button_title, $custom_url) { 125 125 $target = ($this->options["target"] == "new" && $platform != "email") ? "_blank" : "_self"; 126 $protocol = (isset($_SERVER[ "HTTPS"]) && $_SERVER["HTTPS"] !== "" && $_SERVER["HTTPS"] !== "off") ? "https://" : "http://";126 $protocol = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != '') ? "https://" : "http://"; 127 127 $searches = array( 128 128 "{{SITE_NAME}}", -
osd-social-media-sharing/trunk/includes/post_settings.php
r1094595 r1271342 20 20 $user_post_types = $user_post_types['post_types']; 21 21 22 if (isset($user_post_types[$post_type]) ){22 if (isset($user_post_types[$post_type]) && $user_post_types[$post_type] != 0){ 23 23 //add_meta_box( $id, $title, $callback, $page, $context, $priority, $callback_args ); 24 24 add_meta_box('osd_enable_sharing', -
osd-social-media-sharing/trunk/osd_social_media_sharing.php
r1165719 r1271342 4 4 Plugin URI: http://outsidesource.com 5 5 Description: Add buttons to share any of your content on facebook, twitter, google plus, pinterest, email and more. 6 Version: 3.5. 26 Version: 3.5.3 7 7 Author: OSD Web Development Team 8 8 Author URI: http://outsidesource.com -
osd-social-media-sharing/trunk/readme.txt
r1165719 r1271342 4 4 Requires at least: 3.4 5 5 Tested up to: 4.2 6 Stable tag: 3.5. 26 Stable tag: 3.5.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 41 41 == Changelog == 42 43 = 3.5.3 = 44 * Adjusted metabox display logic 42 45 43 46 = 3.5.2 =
Note: See TracChangeset
for help on using the changeset viewer.