Changeset 1343508
- Timestamp:
- 02/04/2016 08:43:50 PM (10 years ago)
- Location:
- flytedesk-ads/trunk
- Files:
-
- 2 edited
-
fdxAds.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flytedesk-ads/trunk/fdxAds.php
r1341562 r1343508 4 4 Description: A plugin to help implement the flytedesk ad tags into a website 5 5 Author: flytedesk inc. 6 Version: 1.2 6 Version: 1.2.1 7 7 8 8 */ … … 283 283 public function widget( $args, $instance ) 284 284 { 285 var_dump($instance); 285 286 $shortCodeEnabled = get_option( 'fdxAdsShortCodeEnable', 'false' ); 286 287 $widgetEnabled = get_option( 'fdxAdsWidgetEnable', 'false' ); 287 $fdxContainer = get_option('fdxContainer', '');288 $fdxContainer = str_replace(' ','',$instance['fdxContainer']); 288 289 289 290 $containerData = ($fdxContainer !="") ? "data-container=\"" . $fdxContainer . "\"" : ""; … … 296 297 public function form( $instance ) 297 298 { 298 var_dump($instance); 299 299 300 $fdxAlign = (isset($instance['fdxAlign'])) ? $instance['fdxAlign'] : 'none'; 300 301 if ( isset( $instance[ 'fdxAdsId' ] ) ) -
flytedesk-ads/trunk/readme.txt
r1341562 r1343508 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.4.2 7 Stable tag: 1.2 7 Stable tag: 1.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 == Changelog == 34 34 35 = 1.2.1 = 36 * update to fix minor issue with the widget not passing the data container property 37 35 38 = 1.2 = 36 39 * update to fix minor bugs … … 44 47 == Upgrade Notice == 45 48 49 = 1.2.1 = 50 See changelog 51 46 52 = 1.2 = 47 53 See changelog
Note: See TracChangeset
for help on using the changeset viewer.