Changeset 882543
- Timestamp:
- 03/26/2014 07:40:04 PM (12 years ago)
- Location:
- wp-symposium-toolbar/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
wp-symposium-toolbar.php (modified) (2 diffs)
-
wp-symposium-toolbar_admin_functions.php (modified) (3 diffs)
-
wp-symposium-toolbar_functions.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-symposium-toolbar/trunk/readme.txt
r882277 r882543 9 9 Tested up to: 3.8.1 10 10 Stable tag: 0.27.0 11 Version: 0.27.2 011 Version: 0.27.22 12 12 License: GPLv2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 157 157 * Change: WP 3.9, make use of 'rel' meta added to WP_Admin_Bar::add_node() for Custom Menus relationships set from WP NavMenus page (requires at least WP 3.9) 158 158 * Bugfix: get rid of PHP notices when a gradient is set without a background color 159 * Bugfix: Styles, both previewed and saved,username now adheres to WP default color when no font color is set in dropdown menus, likewise on hover159 * Bugfix: Styles, username now adheres to WP default color when no font color is set in dropdown menus, likewise on hover 160 160 * Bugfix: WP 3.8, Styles, make menu items' background colors transparent on hover (no default value) 161 161 * Bugfix: WP 3.8, make sure the default CSS file is loaded at all pages when Admin chooses to style the Toolbar accross the whole dashbard 162 * Bugfix: WP 3.8, use SSL on the URL over the share icons when SSL is active 162 163 163 164 = 0.27.0. = -
wp-symposium-toolbar/trunk/wp-symposium-toolbar.php
r882277 r882543 11 11 Tested up to: 3.8.1 12 12 Stable tag: 0.27.0 13 Version: 0.27.2 013 Version: 0.27.22 14 14 License: GPLv2 or later 15 15 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 23 23 // Increase Build nr at each version 24 24 global $wpst_buildnr; 25 $wpst_buildnr = 272 0;25 $wpst_buildnr = 2722; 26 26 27 27 -
wp-symposium-toolbar/trunk/wp-symposium-toolbar_admin_functions.php
r882277 r882543 2576 2576 // If a hover color was defined for non-Highlighted Items, force back hover color to WP default for Highlighted Items 2577 2577 if ( isset( $wpst_style_tb_current['menu_hover_font_colour'] ) ) $menu_hover_ext_font_colour = $wpst_default_toolbar['menu_hover_ext_font_colour']; 2578 if ( isset( $menu_hover_font_colour ) ) $menu_hover_ext_font_colour = $wpst_default_toolbar['menu_hover_ext_font_colour']; 2578 2579 2579 2580 // If a hover color was defined for Highlighted Items, force hover/focus color to WP default for non-Highlighted Items … … 2615 2616 } else 2616 2617 $style_saved .= '#wpadminbar .quicklinks .menupop .ab-submenu > li:hover > .ab-item, #wpadminbar .quicklinks .menupop .ab-submenu > li.hover > .ab-item, #wpadminbar .quicklinks .menupop .ab-submenu > li .ab-item:focus, #wpadminbar #wp-admin-bar-user-info .ab-item:hover, #wpadminbar #wp-admin-bar-user-info .ab-item:hover span { ' . $style_chunk . '} '; 2617 $style_chunk = "";2618 2618 } 2619 2619 … … 2639 2639 // Menu Hover for Blavatars 2640 2640 if ( is_multisite() && version_compare( $wp_version, '3.8-alpha', '>' ) ) { 2641 2642 // Force it 2643 // if ( $style_chunk_ext == "" ) $style_chunk_ext = $style_chunk; 2641 2644 2642 2645 // "W" icons in My Sites dropdown menu - add font color and shadow, not the attributes -
wp-symposium-toolbar/trunk/wp-symposium-toolbar_functions.php
r880466 r882543 850 850 $blog_name = get_bloginfo('name'); 851 851 $parent = get_option( 'wpst_share_icons_position', '' ); 852 $http_prefix = ( is_ssl() ) ? "https://" : "http://"; 852 853 $class = get_option( 'wpst_share_icons_set', 'lightweight' ); 853 854 if ( get_option( 'wpst_share_icons_color', '' ) == 'on' ) $class .= ' brand'; … … 885 886 'parent' => $parent, 886 887 'title' => '', 887 'href' => 'http://www.linkedin.com/shareArticle?mini=true&url=' . $shared_url,888 'href' => $http_prefix . 'www.linkedin.com/shareArticle?mini=true&url=' . $shared_url, 888 889 'meta' => array( 'title' => __( "Share this on LinkedIn", 'wp-symposium-toolbar' ), 'class' => 'symposium-toolbar-share-icon symposium-toolbar-share-linkedin '.$class, 'target' => '_blank' ) 889 890 ); … … 897 898 'parent' => $parent, 898 899 'title' => '', 899 'href' => 'http://www.facebook.com/sharer.php?u=' . $shared_url,900 'href' => $http_prefix . 'www.facebook.com/sharer.php?u=' . $shared_url, 900 901 'meta' => array( 'title' => __( "Share this on Facebook", 'wp-symposium-toolbar' ), 'class' => 'symposium-toolbar-share-icon symposium-toolbar-share-facebook '.$class, 'target' => '_blank' ) 901 902 ); … … 909 910 'parent' => $parent, 910 911 'title' => '', 911 'href' => 'http://twitter.com/share?url=' . $shared_url . '&text=' . $blog_name,912 'href' => $http_prefix . 'twitter.com/share?url=' . $shared_url . '&text=' . $blog_name, 912 913 /* translators: alternatively, this could be translated with "share this on Twitter" */ 913 914 'meta' => array( 'title' => __( "Tweet this", 'wp-symposium-toolbar' ), 'class' => 'symposium-toolbar-share-icon symposium-toolbar-share-twitter '.$class, 'target' => '_blank' ) … … 922 923 'parent' => $parent, 923 924 'title' => '', 924 'href' => 'https://plus.google.com/share?url=' . $shared_url,925 'href' => $http_prefix . 'plus.google.com/share?url=' . $shared_url, 925 926 'meta' => array( 'title' => __( "Share this on Google Plus", 'wp-symposium-toolbar' ), 'class' => 'symposium-toolbar-share-icon symposium-toolbar-share-google-plus '.$class, 'target' => '_blank' ) 926 927 ); … … 934 935 'parent' => $parent, 935 936 'title' => '', 936 'href' => 'http://www.stumbleupon.com/submit?url=' . $shared_url . '&title=' . $blog_name,937 'href' => $http_prefix . 'www.stumbleupon.com/submit?url=' . $shared_url . '&title=' . $blog_name, 937 938 'meta' => array( 'title' => __( "Share this on StumbleUpon", 'wp-symposium-toolbar' ), 'class' => 'symposium-toolbar-share-icon symposium-toolbar-share-stumbleupon '.$class, 'target' => '_blank' ) 938 939 );
Note: See TracChangeset
for help on using the changeset viewer.