Plugin Directory

Changeset 3496993


Ignore:
Timestamp:
04/01/2026 08:33:47 PM (23 hours ago)
Author:
in9ti
Message:

Release 1.0.2: Fix Undefined array key 0 strict warning.

Location:
zapteam
Files:
116 added
3 edited

Legend:

Unmodified
Added
Removed
  • zapteam/trunk/readme.txt

    r3496970 r3496993  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7171== Changelog ==
    7272
     73= 1.0.2 =
     74* Fix: Addressed an "Undefined array key" strict warning on admin panel when no members exist.
     75
    7376= 1.0.1 =
    7477* Tweak: Clarified phone number instructions in admin panel.
  • zapteam/trunk/templates/admin-page.php

    r3496919 r3496993  
    408408            <!-- Hidden template for new member row -->
    409409            <script type="text/html" id="sc-member-template">
    410                 <?php zapteam_render_member_row('__INDEX__', ZapTeam::get_default_settings()['members'][0]); ?>
     410                <?php zapteam_render_member_row('__INDEX__', array()); ?>
    411411            </script>
    412412        </div>
  • zapteam/trunk/zapteam.php

    r3496919 r3496993  
    33 * Plugin Name: ZapTeam - Floating Chat Widget
    44 * Description: A floating chat button with team members popup, smart scheduling, and beautiful animations. Connect your visitors to your team via WhatsApp in one click.
    5  * Version:     1.0.1
     5 * Version:     1.0.2
    66 * Author:      in9ti
    77 * Author URI:  https://in9ti.com
     
    1919
    2020// Plugin constants
    21 define('ZAPTEAM_VERSION', '1.0.1');
     21define('ZAPTEAM_VERSION', '1.0.2');
    2222define('ZAPTEAM_PATH', plugin_dir_path(__FILE__));
    2323define('ZAPTEAM_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.