Plugin Directory

Changeset 1320247


Ignore:
Timestamp:
01/03/2016 01:35:37 PM (10 years ago)
Author:
benohead
Message:

tagging version 1.1.1

Location:
wp-advertize-it
Files:
1 added
4 edited
15 copied

Legend:

Unmodified
Added
Removed
  • wp-advertize-it/tags/1.1.1/bootstrap.php

    r1320239 r1320247  
    44Plugin URI:  https://wordpress.org/plugins/wp-advertize-it/
    55Description: A plugin to place adsense blocks on your site
    6 Version:     1.1
     6Version:     1.1.1
    77Author:      Henri Benoit, Alexander Herdt, amazingweb.de
    88Author URI:  http://benohead.com
  • wp-advertize-it/tags/1.1.1/classes/wp-advertize-it.php

    r1310238 r1320247  
    2424         * Plugin version
    2525         */
    26         const VERSION = '1.1';
     26        const VERSION = '1.1.1';
    2727        /**
    2828         * Prefix used to identify things related to this plugin
     
    420420
    421421            foreach (explode(',', $options['suppress-url']->value) as $id) {
    422                 if ($id != "" && $id != 0) {
     422                if ($id != "" && $id !== 0) {
    423423                    array_push($suppress_url, $id);
    424424                }
     
    436436
    437437            foreach (explode(',', $options['suppress-ipaddress']->value) as $id) {
    438                 if ($id != "" && $id != 0) {
     438                if ($id != "" && $id !== 0) {
    439439                    array_push($suppress_ipaddress, $id);
    440440                }
     
    452452
    453453            foreach (explode(',', $options['suppress-referrer']->value) as $id) {
    454                 if ($id != "" && $id != 0) {
     454                if ($id != "" && $id !== 0) {
    455455                    array_push($suppress_referrer, $id);
    456456                }
  • wp-advertize-it/tags/1.1.1/readme.txt

    r1320239 r1320247  
    55Requires at least: 4.2.3
    66Tested up to: 4.4
    7 Stable tag: 1.1
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    126126== Changelog ==
    127127
     128= 1.1.1 =
     129
     130* fixed errors in suppress settings
     131
    128132= 1.1 =
    129133
  • wp-advertize-it/trunk/bootstrap.php

    r1310238 r1320247  
    44Plugin URI:  https://wordpress.org/plugins/wp-advertize-it/
    55Description: A plugin to place adsense blocks on your site
    6 Version:     1.1
     6Version:     1.1.1
    77Author:      Henri Benoit, Alexander Herdt, amazingweb.de
    88Author URI:  http://benohead.com
  • wp-advertize-it/trunk/classes/wp-advertize-it.php

    r1310238 r1320247  
    2424         * Plugin version
    2525         */
    26         const VERSION = '1.1';
     26        const VERSION = '1.1.1';
    2727        /**
    2828         * Prefix used to identify things related to this plugin
     
    420420
    421421            foreach (explode(',', $options['suppress-url']->value) as $id) {
    422                 if ($id != "" && $id != 0) {
     422                if ($id != "" && $id !== 0) {
    423423                    array_push($suppress_url, $id);
    424424                }
     
    436436
    437437            foreach (explode(',', $options['suppress-ipaddress']->value) as $id) {
    438                 if ($id != "" && $id != 0) {
     438                if ($id != "" && $id !== 0) {
    439439                    array_push($suppress_ipaddress, $id);
    440440                }
     
    452452
    453453            foreach (explode(',', $options['suppress-referrer']->value) as $id) {
    454                 if ($id != "" && $id != 0) {
     454                if ($id != "" && $id !== 0) {
    455455                    array_push($suppress_referrer, $id);
    456456                }
  • wp-advertize-it/trunk/readme.txt

    r1310238 r1320247  
    55Requires at least: 4.2.3
    66Tested up to: 4.4
    7 Stable tag: 1.1
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    126126== Changelog ==
    127127
     128= 1.1.1 =
     129
     130* fixed errors in suppress settings
     131
    128132= 1.1 =
    129133
Note: See TracChangeset for help on using the changeset viewer.