Plugin Directory

Changeset 1343508


Ignore:
Timestamp:
02/04/2016 08:43:50 PM (10 years ago)
Author:
flytedesk
Message:

update to 1.2.1

Location:
flytedesk-ads/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • flytedesk-ads/trunk/fdxAds.php

    r1341562 r1343508  
    44Description: A plugin to help implement the flytedesk ad tags into a website
    55Author: flytedesk inc.
    6 Version: 1.2
     6Version: 1.2.1
    77
    88*/
     
    283283    public function widget( $args, $instance )
    284284    {
     285        var_dump($instance);
    285286        $shortCodeEnabled = get_option( 'fdxAdsShortCodeEnable', 'false' );
    286287        $widgetEnabled = get_option( 'fdxAdsWidgetEnable', 'false' );
    287         $fdxContainer = get_option('fdxContainer', '');
     288        $fdxContainer = str_replace(' ','',$instance['fdxContainer']);
    288289
    289290        $containerData = ($fdxContainer !="") ? "data-container=\"" . $fdxContainer . "\"" : "";
     
    296297    public function form( $instance )
    297298    {
    298         var_dump($instance);
     299
    299300        $fdxAlign = (isset($instance['fdxAlign'])) ? $instance['fdxAlign'] : 'none';
    300301        if ( isset( $instance[ 'fdxAdsId' ] ) )
  • flytedesk-ads/trunk/readme.txt

    r1341562 r1343508  
    55Requires at least: 3.0.1
    66Tested up to: 4.4.2
    7 Stable tag: 1.2
     7Stable tag: 1.2.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333== Changelog ==
    3434
     35= 1.2.1 =
     36* update to fix minor issue with the widget not passing the data container property
     37
    3538= 1.2 =
    3639* update to fix minor bugs
     
    4447== Upgrade Notice ==
    4548
     49= 1.2.1 =
     50See changelog
     51
    4652= 1.2 =
    4753See changelog
Note: See TracChangeset for help on using the changeset viewer.