Plugin Directory

Changeset 2853125


Ignore:
Timestamp:
01/23/2023 10:07:31 PM (3 years ago)
Author:
PascalBajorat
Message:

1.0.2

Location:
popupbuilder-app
Files:
63 added
3 edited

Legend:

Unmodified
Added
Removed
  • popupbuilder-app/trunk/popupbuilder-app.php

    r2839702 r2853125  
    66 * Author URI:          https://www.bajorat-media.com
    77 * Plugin URI:          https://popupbuilder.app
    8  * Version:             1.0.1
     8 * Version:             1.0.2
    99 * Requires at least:   5.2
    1010 * Requires PHP:        7.3
     
    2424define('PUBA_DIR', dirname(__FILE__));
    2525define('PUBA_BASE', plugin_basename(__FILE__));
    26 define('PUBA_VERSION', '1.0.1');
     26define('PUBA_VERSION', '1.0.2');
    2727
    2828/**
  • popupbuilder-app/trunk/readme.txt

    r2839702 r2853125  
    55Requires at least: 5.0
    66Tested up to: 6.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5353== Changelog ==
    5454
     55= 1.0.2 =
     56* Fixed notifications list: only show notifications from selected campaign
     57
    5558= 1.0.1 =
    5659* Initial release
  • popupbuilder-app/trunk/templates/admin-overview.php

    r2839702 r2853125  
    4343            <?php
    4444            foreach ( $notifications as $notification ) {
     45                if( isset($campaign->id) && $campaign->id !== $notification->campaign_id ) continue;
    4546                ?>
    4647                <div class="col-lg-3 col-md-4 col-6">
Note: See TracChangeset for help on using the changeset viewer.