Changeset 1320247
- Timestamp:
- 01/03/2016 01:35:37 PM (10 years ago)
- Location:
- wp-advertize-it
- Files:
-
- 1 added
- 4 edited
- 15 copied
-
tags/1.1.1 (added)
-
tags/1.1.1/ace (copied) (copied from wp-advertize-it/trunk/ace)
-
tags/1.1.1/bootstrap.php (copied) (copied from wp-advertize-it/trunk/bootstrap.php) (1 diff)
-
tags/1.1.1/classes (copied) (copied from wp-advertize-it/trunk/classes)
-
tags/1.1.1/classes/wp-advertize-it.php (modified) (4 diffs)
-
tags/1.1.1/css (copied) (copied from wp-advertize-it/trunk/css)
-
tags/1.1.1/images (copied) (copied from wp-advertize-it/trunk/images)
-
tags/1.1.1/includes (copied) (copied from wp-advertize-it/trunk/includes)
-
tags/1.1.1/javascript (copied) (copied from wp-advertize-it/trunk/javascript)
-
tags/1.1.1/langs (copied) (copied from wp-advertize-it/trunk/langs)
-
tags/1.1.1/readme.txt (copied) (copied from wp-advertize-it/trunk/readme.txt) (2 diffs)
-
tags/1.1.1/screenshot-1.png (copied) (copied from wp-advertize-it/trunk/screenshot-1.png)
-
tags/1.1.1/screenshot-2.png (copied) (copied from wp-advertize-it/trunk/screenshot-2.png)
-
tags/1.1.1/screenshot-3.png (copied) (copied from wp-advertize-it/trunk/screenshot-3.png)
-
tags/1.1.1/screenshot-4.png (copied) (copied from wp-advertize-it/trunk/screenshot-4.png)
-
tags/1.1.1/screenshot-5.png (copied) (copied from wp-advertize-it/trunk/screenshot-5.png)
-
tags/1.1.1/views (copied) (copied from wp-advertize-it/trunk/views)
-
trunk/bootstrap.php (modified) (1 diff)
-
trunk/classes/wp-advertize-it.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-advertize-it/tags/1.1.1/bootstrap.php
r1320239 r1320247 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.1 6 Version: 1.1.1 7 7 Author: Henri Benoit, Alexander Herdt, amazingweb.de 8 8 Author URI: http://benohead.com -
wp-advertize-it/tags/1.1.1/classes/wp-advertize-it.php
r1310238 r1320247 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.1 ';26 const VERSION = '1.1.1'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin … … 420 420 421 421 foreach (explode(',', $options['suppress-url']->value) as $id) { 422 if ($id != "" && $id != 0) {422 if ($id != "" && $id !== 0) { 423 423 array_push($suppress_url, $id); 424 424 } … … 436 436 437 437 foreach (explode(',', $options['suppress-ipaddress']->value) as $id) { 438 if ($id != "" && $id != 0) {438 if ($id != "" && $id !== 0) { 439 439 array_push($suppress_ipaddress, $id); 440 440 } … … 452 452 453 453 foreach (explode(',', $options['suppress-referrer']->value) as $id) { 454 if ($id != "" && $id != 0) {454 if ($id != "" && $id !== 0) { 455 455 array_push($suppress_referrer, $id); 456 456 } -
wp-advertize-it/tags/1.1.1/readme.txt
r1320239 r1320247 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.4 7 Stable tag: 1.1 7 Stable tag: 1.1.1 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.1.1 = 129 130 * fixed errors in suppress settings 131 128 132 = 1.1 = 129 133 -
wp-advertize-it/trunk/bootstrap.php
r1310238 r1320247 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.1 6 Version: 1.1.1 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
r1310238 r1320247 24 24 * Plugin version 25 25 */ 26 const VERSION = '1.1 ';26 const VERSION = '1.1.1'; 27 27 /** 28 28 * Prefix used to identify things related to this plugin … … 420 420 421 421 foreach (explode(',', $options['suppress-url']->value) as $id) { 422 if ($id != "" && $id != 0) {422 if ($id != "" && $id !== 0) { 423 423 array_push($suppress_url, $id); 424 424 } … … 436 436 437 437 foreach (explode(',', $options['suppress-ipaddress']->value) as $id) { 438 if ($id != "" && $id != 0) {438 if ($id != "" && $id !== 0) { 439 439 array_push($suppress_ipaddress, $id); 440 440 } … … 452 452 453 453 foreach (explode(',', $options['suppress-referrer']->value) as $id) { 454 if ($id != "" && $id != 0) {454 if ($id != "" && $id !== 0) { 455 455 array_push($suppress_referrer, $id); 456 456 } -
wp-advertize-it/trunk/readme.txt
r1310238 r1320247 5 5 Requires at least: 4.2.3 6 6 Tested up to: 4.4 7 Stable tag: 1.1 7 Stable tag: 1.1.1 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.1.1 = 129 130 * fixed errors in suppress settings 131 128 132 = 1.1 = 129 133
Note: See TracChangeset
for help on using the changeset viewer.