Changeset 1303169
- Timestamp:
- 12/08/2015 06:18:05 PM (10 years ago)
- Location:
- wp-advertize-it
- Files:
-
- 1 added
- 5 edited
- 18 copied
-
tags/1.0.4 (added)
-
tags/1.0.4/ace (copied) (copied from wp-advertize-it/trunk/ace)
-
tags/1.0.4/bootstrap.php (copied) (copied from wp-advertize-it/trunk/bootstrap.php) (1 diff)
-
tags/1.0.4/classes (copied) (copied from wp-advertize-it/trunk/classes)
-
tags/1.0.4/classes/wp-advertize-it.php (copied) (copied from wp-advertize-it/trunk/classes/wp-advertize-it.php) (1 diff)
-
tags/1.0.4/classes/wpai-db.php (copied) (copied from wp-advertize-it/trunk/classes/wpai-db.php)
-
tags/1.0.4/classes/wpai-offers.php (copied) (copied from wp-advertize-it/trunk/classes/wpai-offers.php)
-
tags/1.0.4/classes/wpai-settings.php (modified) (3 diffs)
-
tags/1.0.4/css (copied) (copied from wp-advertize-it/trunk/css)
-
tags/1.0.4/images (copied) (copied from wp-advertize-it/trunk/images)
-
tags/1.0.4/includes (copied) (copied from wp-advertize-it/trunk/includes)
-
tags/1.0.4/javascript (copied) (copied from wp-advertize-it/trunk/javascript)
-
tags/1.0.4/langs (copied) (copied from wp-advertize-it/trunk/langs)
-
tags/1.0.4/readme.txt (copied) (copied from wp-advertize-it/trunk/readme.txt) (2 diffs)
-
tags/1.0.4/screenshot-1.png (copied) (copied from wp-advertize-it/trunk/screenshot-1.png)
-
tags/1.0.4/screenshot-2.png (copied) (copied from wp-advertize-it/trunk/screenshot-2.png)
-
tags/1.0.4/screenshot-3.png (copied) (copied from wp-advertize-it/trunk/screenshot-3.png)
-
tags/1.0.4/screenshot-4.png (copied) (copied from wp-advertize-it/trunk/screenshot-4.png)
-
tags/1.0.4/screenshot-5.png (copied) (copied from wp-advertize-it/trunk/screenshot-5.png)
-
tags/1.0.4/views (copied) (copied from wp-advertize-it/trunk/views)
-
trunk/bootstrap.php (modified) (1 diff)
-
trunk/classes/wp-advertize-it.php (modified) (1 diff)
-
trunk/classes/wpai-settings.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-advertize-it/tags/1.0.4/bootstrap.php
r1302776 r1303169 4 4 Plugin URI: https://wordpress.org/plugins/wp-advertize-it/ 5 5 Description: A plugin to place adsense blocks on your site 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: Henri Benoit, Alexander Herdt, amazingweb.de 8 8 Author URI: http://benohead.com -
wp-advertize-it/tags/1.0.4/classes/wp-advertize-it.php
r1302776 r1303169 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.0. 3';26 const VERSION = '1.0.4'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin -
wp-advertize-it/tags/1.0.4/classes/wpai-settings.php
r1301533 r1303169 150 150 $placements = array(); 151 151 } 152 153 foreach ($this->get_default_settings()['placements'] as $plind => $plval){ 152 153 $default_settings = $this->get_default_settings(); 154 foreach ($default_settings['placements'] as $plind => $plval){ 154 155 if ($placements[$plind]==""){ 155 156 $placements [$plind] = array(); … … 203 204 204 205 if (!$options){ 205 $options = $this->get_default_settings()['options']; 206 $default_settings1 = $this->get_default_settings(); 207 $options = $default_settings1['options']; 206 208 } 207 209 … … 209 211 $dboption = array(); 210 212 $dboption['name'] = $o; 211 $dboption['value'] = ($option || $option===0) ?$option:$this->get_default_settings()['options'][$o]; 213 $default_settings2 = $this->get_default_settings(); 214 $dboption['value'] = ($option || $option===0) ?$option: $default_settings2['options'][$o]; 212 215 213 216 if (is_array($dboption['value'])){ -
wp-advertize-it/tags/1.0.4/readme.txt
r1302776 r1303169 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 126 126 == Changelog == 127 127 128 = 1.0.4 = 129 130 * fixed more compatibility issues with PHP 5.3 131 128 132 = 1.0.3 = 129 133 -
wp-advertize-it/trunk/bootstrap.php
r1302776 r1303169 4 4 Plugin URI: https://wordpress.org/plugins/wp-advertize-it/ 5 5 Description: A plugin to place adsense blocks on your site 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: Henri Benoit, Alexander Herdt, amazingweb.de 8 8 Author URI: http://benohead.com -
wp-advertize-it/trunk/classes/wp-advertize-it.php
r1302776 r1303169 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.0. 3';26 const VERSION = '1.0.4'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin -
wp-advertize-it/trunk/classes/wpai-settings.php
r1301533 r1303169 150 150 $placements = array(); 151 151 } 152 153 foreach ($this->get_default_settings()['placements'] as $plind => $plval){ 152 153 $default_settings = $this->get_default_settings(); 154 foreach ($default_settings['placements'] as $plind => $plval){ 154 155 if ($placements[$plind]==""){ 155 156 $placements [$plind] = array(); … … 203 204 204 205 if (!$options){ 205 $options = $this->get_default_settings()['options']; 206 $default_settings1 = $this->get_default_settings(); 207 $options = $default_settings1['options']; 206 208 } 207 209 … … 209 211 $dboption = array(); 210 212 $dboption['name'] = $o; 211 $dboption['value'] = ($option || $option===0) ?$option:$this->get_default_settings()['options'][$o]; 213 $default_settings2 = $this->get_default_settings(); 214 $dboption['value'] = ($option || $option===0) ?$option: $default_settings2['options'][$o]; 212 215 213 216 if (is_array($dboption['value'])){ -
wp-advertize-it/trunk/readme.txt
r1302776 r1303169 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.3.1 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 126 126 == Changelog == 127 127 128 = 1.0.4 = 129 130 * fixed more compatibility issues with PHP 5.3 131 128 132 = 1.0.3 = 129 133
Note: See TracChangeset
for help on using the changeset viewer.