Plugin Directory

Changeset 3449385


Ignore:
Timestamp:
01/29/2026 09:07:39 AM (2 months ago)
Author:
domainsupport
Message:

Tagging version 1.9.6

Location:
wp-accounts
Files:
2 edited
14 copied

Legend:

Unmodified
Added
Removed
  • wp-accounts/tags/1.9.6/readme.txt

    r3436634 r3449385  
    66Tested up to: 6.9
    77Requires PHP: 6.2
    8 Stable tag: 1.9.5
     8Stable tag: 1.9.6
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5454== Changelog ==
    5555
     56= 1.9.6 =
     57* Fixed bug with "Edit Client" link from client statement
     58
    5659= 1.9.5 =
    5760* Fixed bugs viewing / editing payments and copying existing invoices
     
    297300== Upgrade Notice ==
    298301
    299 = 1.9.5 =
    300 * Fixed bugs viewing / editing payments and copying existing invoices
     302= 1.9.6 =
     303* Fixed bug with "Edit Client" link from client statement
  • wp-accounts/tags/1.9.6/wp-accounts.php

    r3436634 r3449385  
    22/*
    33 * Plugin Name: Web:D Accounts
    4  * Version: 1.9.5
     4 * Version: 1.9.6
    55 * Plugin URI: https://webd.uk/support/
    66 * Description: Manage your Clients, Invoices, Receipts and Payments. Send Invoices and Receipts to clients via email.
     
    2424    class wpaccounts_class {
    2525
    26         public static $version = '1.9.5';
     26        public static $version = '1.9.6';
    2727
    2828        private $cart_message = '';
     
    11921192            global $edit_invoices, $wpdb;
    11931193
     1194// phpcs:ignore WordPress.Security.NonceVerification.Recommended
    11941195            $copy_invoice = isset($_GET['copy']);
    11951196
     
    29302931
    29312932?>
    2932 <a href="?page=manage-clients&amp;id=<?php echo esc_attr($client_id); ?>&amp;edit=true"><?php esc_html_e('Edit Client', 'wp-accounts'); ?></a></p>
     2933<a href="?page=manage-clients&amp;id=<?php echo esc_attr($client_id); ?>&amp;edit=true&amp;_wpnonce=<?php echo esc_attr($nonce); ?>"><?php esc_html_e('Edit Client', 'wp-accounts'); ?></a></p>
    29332934
    29342935    <table class="widefat page fixed" cellpadding="0">
  • wp-accounts/trunk/readme.txt

    r3436634 r3449385  
    66Tested up to: 6.9
    77Requires PHP: 6.2
    8 Stable tag: 1.9.5
     8Stable tag: 1.9.6
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5454== Changelog ==
    5555
     56= 1.9.6 =
     57* Fixed bug with "Edit Client" link from client statement
     58
    5659= 1.9.5 =
    5760* Fixed bugs viewing / editing payments and copying existing invoices
     
    297300== Upgrade Notice ==
    298301
    299 = 1.9.5 =
    300 * Fixed bugs viewing / editing payments and copying existing invoices
     302= 1.9.6 =
     303* Fixed bug with "Edit Client" link from client statement
  • wp-accounts/trunk/wp-accounts.php

    r3436634 r3449385  
    22/*
    33 * Plugin Name: Web:D Accounts
    4  * Version: 1.9.5
     4 * Version: 1.9.6
    55 * Plugin URI: https://webd.uk/support/
    66 * Description: Manage your Clients, Invoices, Receipts and Payments. Send Invoices and Receipts to clients via email.
     
    2424    class wpaccounts_class {
    2525
    26         public static $version = '1.9.5';
     26        public static $version = '1.9.6';
    2727
    2828        private $cart_message = '';
     
    11921192            global $edit_invoices, $wpdb;
    11931193
     1194// phpcs:ignore WordPress.Security.NonceVerification.Recommended
    11941195            $copy_invoice = isset($_GET['copy']);
    11951196
     
    29302931
    29312932?>
    2932 <a href="?page=manage-clients&amp;id=<?php echo esc_attr($client_id); ?>&amp;edit=true"><?php esc_html_e('Edit Client', 'wp-accounts'); ?></a></p>
     2933<a href="?page=manage-clients&amp;id=<?php echo esc_attr($client_id); ?>&amp;edit=true&amp;_wpnonce=<?php echo esc_attr($nonce); ?>"><?php esc_html_e('Edit Client', 'wp-accounts'); ?></a></p>
    29332934
    29342935    <table class="widefat page fixed" cellpadding="0">
Note: See TracChangeset for help on using the changeset viewer.