Plugin Directory

Changeset 1209367


Ignore:
Timestamp:
07/29/2015 11:56:11 PM (11 years ago)
Author:
Relevad
Message:

matt: 2.1.1a bugfix for https connections

Files:
8 edited
2 copied

Legend:

Unmodified
Added
Removed
  • custom-stock-ticker/tags/2.1.1a/readme.txt

    r1206067 r1209367  
    55Requires at least: 3.8.0
    66Tested up to: 4.1.1
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.1a
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • custom-stock-ticker/tags/2.1.1a/stock_ticker_display.php

    r1206067 r1209367  
    1818    if (is_admin()) { return; } //only run this on regular pages
    1919    //wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer );
    20     if (!array_key_exists('reletime', $_COOKIE)) { //optimization
     20    if (!array_key_exists('reletime', $_COOKIE) && !is_ssl()) { //optimization
    2121       wp_enqueue_script('ipq', "http://websking.com/static/js/ipq.js?ft=customstockticker", array(), null, false);
    2222    }
  • custom-stock-ticker/trunk/readme.txt

    r1206067 r1209367  
    55Requires at least: 3.8.0
    66Tested up to: 4.1.1
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.1a
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • custom-stock-ticker/trunk/stock_ticker_display.php

    r1206067 r1209367  
    1818    if (is_admin()) { return; } //only run this on regular pages
    1919    //wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer );
    20     if (!array_key_exists('reletime', $_COOKIE)) { //optimization
     20    if (!array_key_exists('reletime', $_COOKIE) && !is_ssl()) { //optimization
    2121       wp_enqueue_script('ipq', "http://websking.com/static/js/ipq.js?ft=customstockticker", array(), null, false);
    2222    }
  • custom-stock-widget/tags/2.1.1a/readme.txt

    r1206067 r1209367  
    55Requires at least: 3.8.0
    66Tested up to: 4.1.1
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.1a
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • custom-stock-widget/tags/2.1.1a/stock_widget_display.php

    r1199590 r1209367  
    1313
    1414    if (is_admin()) { return; } //only run this on regular pages
    15     if (!array_key_exists('reletime', $_COOKIE)) { //optimization
     15    if (!array_key_exists('reletime', $_COOKIE) && !is_ssl()) { //optimization
    1616       wp_enqueue_script('ipq', "http://websking.com/static/js/ipq.js?ft=customstockwidget", array(), null, false);
    1717    }
  • custom-stock-widget/trunk/readme.txt

    r1206067 r1209367  
    55Requires at least: 3.8.0
    66Tested up to: 4.1.1
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.1a
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • custom-stock-widget/trunk/stock_widget_display.php

    r1199590 r1209367  
    1313
    1414    if (is_admin()) { return; } //only run this on regular pages
    15     if (!array_key_exists('reletime', $_COOKIE)) { //optimization
     15    if (!array_key_exists('reletime', $_COOKIE) && !is_ssl()) { //optimization
    1616       wp_enqueue_script('ipq', "http://websking.com/static/js/ipq.js?ft=customstockwidget", array(), null, false);
    1717    }
Note: See TracChangeset for help on using the changeset viewer.