Plugin Directory

Changeset 3436634


Ignore:
Timestamp:
01/10/2026 01:56:49 PM (3 months ago)
Author:
domainsupport
Message:

Tagging version 1.9.5

Location:
wp-accounts
Files:
2 edited
14 copied

Legend:

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

    r3433647 r3436634  
    66Tested up to: 6.9
    77Requires PHP: 6.2
    8 Stable tag: 1.9.4
     8Stable tag: 1.9.5
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5454== Changelog ==
    5555
     56= 1.9.5 =
     57* Fixed bugs viewing / editing payments and copying existing invoices
     58
    5659= 1.9.4 =
    5760* Fixed bugs with date picker and new Reports page
     
    294297== Upgrade Notice ==
    295298
    296 = 1.9.4 =
    297 * Fixed bugs with date picker and new Reports page
     299= 1.9.5 =
     300* Fixed bugs viewing / editing payments and copying existing invoices
  • wp-accounts/tags/1.9.5/wp-accounts.php

    r3433647 r3436634  
    22/*
    33 * Plugin Name: Web:D Accounts
    4  * Version: 1.9.4
     4 * Version: 1.9.5
    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.4';
     26        public static $version = '1.9.5';
    2727
    2828        private $cart_message = '';
     
    11921192            global $edit_invoices, $wpdb;
    11931193
    1194             $copy_invoice = isset($GET_['copy']);
     1194            $copy_invoice = isset($_GET['copy']);
    11951195
    11961196            $options = get_option('wp_accounts_options');
     
    12501250
    12511251            foreach ($invoice_status as $status) {
    1252 
    12531252?>
    12541253    <option value="<?php echo esc_attr($status->ID); ?>"<?php if ((isset($edit_invoices) && $edit_invoices->invoice_status == $status->ID && !$copy_invoice) || ((!isset($edit_invoices) || $copy_invoice) && $status->status == 'Unpaid')) { echo ' selected="selected"'; } ?>><?php echo esc_html($status->status); ?></option>
     
    40304029          <strong><?php echo esc_html($payment->ID); ?></strong> - <?php echo esc_html($payment->payment_method); ?>
    40314030          <div class="row-actions-visible">
    4032           <span class="edit"><a href="?page=manage-payments$amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true"><?php esc_html_e('Edit', 'wp-accounts'); ?></a> | </span>
    4033           <span class="edit"><a href="?page=manage-payments$amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true&amp;copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span>
     4031          <span class="edit"><a href="?page=manage-payments&amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true"><?php esc_html_e('Edit', 'wp-accounts'); ?></a> | </span>
     4032          <span class="edit"><a href="?page=manage-payments&amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true&amp;copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span>
    40344033          </div>
    40354034          </td>
     
    40864085
    40874086?>
    4088 <p><?php esc_html_e('Move payments to', 'wp-accounts'); ?> <select name="accounts_payments_existing_suppliers" onchange="if (confirm('Are you sure you want to delete this supplier and move all payments to &quot;' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '&quot;?')) { window.location.href = location.href + '&supplier=' + this.value + '&merge=<?php echo esc_attr(urlencode($supplier)); ?>'; }">
     4087<p><?php esc_html_e('Move payments to', 'wp-accounts'); ?> <select name="accounts_payments_existing_suppliers" onchange="if (confirm('Are you sure you want to delete this supplier and move all payments to &quot;' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '&quot;?')) { window.location.href = location.href + '&supplier=' + this.value + '&merge=<?php echo esc_attr(urlencode($supplier)); ?>&_wpnonce=<?php echo esc_attr($nonce); ?>'; }">
    40894088    <option value="" selected="selected">Select ...</option>
    40904089<?php
     
    44724471  <div class="icon32" id="icon-edit"><br></div>
    44734472  <h2><?php esc_html_e('Manage Payments', 'wp-accounts'); ?></h2>
    4474 <p>View Supplier: <select name="accounts_payments_existing_suppliers" onchange="window.location.href = location.href + '&supplier=' + this.value;">
     4473<p>View Supplier: <select name="accounts_payments_existing_suppliers" onchange="window.location.href = location.href + '&_wpnonce=<?php echo esc_attr($nonce); ?>&supplier=' + this.value;">
    44754474    <option value="" selected="selected">Select ...</option>
    44764475<?php
  • wp-accounts/trunk/readme.txt

    r3433647 r3436634  
    66Tested up to: 6.9
    77Requires PHP: 6.2
    8 Stable tag: 1.9.4
     8Stable tag: 1.9.5
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5454== Changelog ==
    5555
     56= 1.9.5 =
     57* Fixed bugs viewing / editing payments and copying existing invoices
     58
    5659= 1.9.4 =
    5760* Fixed bugs with date picker and new Reports page
     
    294297== Upgrade Notice ==
    295298
    296 = 1.9.4 =
    297 * Fixed bugs with date picker and new Reports page
     299= 1.9.5 =
     300* Fixed bugs viewing / editing payments and copying existing invoices
  • wp-accounts/trunk/wp-accounts.php

    r3433647 r3436634  
    22/*
    33 * Plugin Name: Web:D Accounts
    4  * Version: 1.9.4
     4 * Version: 1.9.5
    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.4';
     26        public static $version = '1.9.5';
    2727
    2828        private $cart_message = '';
     
    11921192            global $edit_invoices, $wpdb;
    11931193
    1194             $copy_invoice = isset($GET_['copy']);
     1194            $copy_invoice = isset($_GET['copy']);
    11951195
    11961196            $options = get_option('wp_accounts_options');
     
    12501250
    12511251            foreach ($invoice_status as $status) {
    1252 
    12531252?>
    12541253    <option value="<?php echo esc_attr($status->ID); ?>"<?php if ((isset($edit_invoices) && $edit_invoices->invoice_status == $status->ID && !$copy_invoice) || ((!isset($edit_invoices) || $copy_invoice) && $status->status == 'Unpaid')) { echo ' selected="selected"'; } ?>><?php echo esc_html($status->status); ?></option>
     
    40304029          <strong><?php echo esc_html($payment->ID); ?></strong> - <?php echo esc_html($payment->payment_method); ?>
    40314030          <div class="row-actions-visible">
    4032           <span class="edit"><a href="?page=manage-payments$amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true"><?php esc_html_e('Edit', 'wp-accounts'); ?></a> | </span>
    4033           <span class="edit"><a href="?page=manage-payments$amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true&amp;copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span>
     4031          <span class="edit"><a href="?page=manage-payments&amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true"><?php esc_html_e('Edit', 'wp-accounts'); ?></a> | </span>
     4032          <span class="edit"><a href="?page=manage-payments&amp;_wpnonce=<?php echo esc_attr($nonce); ?>&amp;id=<?php echo esc_attr($payment->ID); ?>&amp;edit=true&amp;copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span>
    40344033          </div>
    40354034          </td>
     
    40864085
    40874086?>
    4088 <p><?php esc_html_e('Move payments to', 'wp-accounts'); ?> <select name="accounts_payments_existing_suppliers" onchange="if (confirm('Are you sure you want to delete this supplier and move all payments to &quot;' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '&quot;?')) { window.location.href = location.href + '&supplier=' + this.value + '&merge=<?php echo esc_attr(urlencode($supplier)); ?>'; }">
     4087<p><?php esc_html_e('Move payments to', 'wp-accounts'); ?> <select name="accounts_payments_existing_suppliers" onchange="if (confirm('Are you sure you want to delete this supplier and move all payments to &quot;' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '&quot;?')) { window.location.href = location.href + '&supplier=' + this.value + '&merge=<?php echo esc_attr(urlencode($supplier)); ?>&_wpnonce=<?php echo esc_attr($nonce); ?>'; }">
    40894088    <option value="" selected="selected">Select ...</option>
    40904089<?php
     
    44724471  <div class="icon32" id="icon-edit"><br></div>
    44734472  <h2><?php esc_html_e('Manage Payments', 'wp-accounts'); ?></h2>
    4474 <p>View Supplier: <select name="accounts_payments_existing_suppliers" onchange="window.location.href = location.href + '&supplier=' + this.value;">
     4473<p>View Supplier: <select name="accounts_payments_existing_suppliers" onchange="window.location.href = location.href + '&_wpnonce=<?php echo esc_attr($nonce); ?>&supplier=' + this.value;">
    44754474    <option value="" selected="selected">Select ...</option>
    44764475<?php
Note: See TracChangeset for help on using the changeset viewer.