Plugin Directory

Changeset 3329990


Ignore:
Timestamp:
07/18/2025 04:19:03 AM (9 months ago)
Author:
dnesscarkey
Message:

2.2.13 Update

Location:
honeypot
Files:
48 added
5 edited

Legend:

Unmodified
Added
Removed
  • honeypot/trunk/includes/js/wpa.js

    r3308835 r3329990  
    5454        'form.wpa_form',                           // Generic Class
    5555        '.wpa_form form',                      // Generic Class
     56
     57        '.um-form form',                        // Ulimate Membership Form
    5658
    5759        // Login forms
  • honeypot/trunk/includes/wpa_config.php

    r3308835 r3329990  
    11<?php
    22if ( ! defined( 'ABSPATH' ) ) exit;
    3 $GLOBALS['wpa_version']                 = '2.2.12';
     3$GLOBALS['wpa_version']                 = '2.2.13';
    44$GLOBALS['wpa_field_name']              = get_option('wpa_field_name');
    55$GLOBALS['wpa_error_message']           = get_option('wpa_error_message');
  • honeypot/trunk/includes/wpa_dashboard_widget.php

    r2463499 r3329990  
    44function wpa_dashboard_widget()
    55{
    6     add_meta_box( 'wpa_dashboard_widget', 'WP Armour Anti Spam Statistics', 'wpa_dashboard_widget_function', 'dashboard', 'side', 'high');
     6    //add_meta_box( 'wpa_dashboard_widget', 'WP Armour Anti Spam Statistics', 'wpa_dashboard_widget_function', 'dashboard', 'side', 'high');
     7    if ( current_user_can('administrator') ) {
     8        add_meta_box(
     9            'wpa_dashboard_widget',
     10            'WP Armour Anti Spam Statistics',
     11            'wpa_dashboard_widget_function',
     12            'dashboard',
     13            'side',
     14            'high'
     15        );
     16    }
    717}
    818 
  • honeypot/trunk/readme.txt

    r3308835 r3329990  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 2.2.12
     7Stable tag: 2.2.13
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    145145== Changelog ==
    146146
     147= = 2.2.13 =
     148
     149* Fixes for Ultimate Memebership form
     150* Remove widgets for Non administrator.
     151
    147152= = 2.2.12 =
    148153
  • honeypot/trunk/wp-armour.php

    r3308835 r3329990  
    66Description: Add honeypot anti spam protection.
    77Author: Dnesscarkey
    8 Version: 2.2.12
     8Version: 2.2.13
    99Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
    1010*/
Note: See TracChangeset for help on using the changeset viewer.