Changeset 3436634
- Timestamp:
- 01/10/2026 01:56:49 PM (3 months ago)
- Location:
- wp-accounts
- Files:
-
- 2 edited
- 14 copied
-
tags/1.9.5 (copied) (copied from wp-accounts/trunk)
-
tags/1.9.5/css (copied) (copied from wp-accounts/trunk/css)
-
tags/1.9.5/css/images (copied) (copied from wp-accounts/trunk/css/images)
-
tags/1.9.5/download-client-statement.php (copied) (copied from wp-accounts/trunk/download-client-statement.php)
-
tags/1.9.5/email-footer.inc (copied) (copied from wp-accounts/trunk/email-footer.inc)
-
tags/1.9.5/email-header.inc (copied) (copied from wp-accounts/trunk/email-header.inc)
-
tags/1.9.5/export-invoices-paid.php (copied) (copied from wp-accounts/trunk/export-invoices-paid.php)
-
tags/1.9.5/export-invoices-raised.php (copied) (copied from wp-accounts/trunk/export-invoices-raised.php)
-
tags/1.9.5/export-mileage.php (copied) (copied from wp-accounts/trunk/export-mileage.php)
-
tags/1.9.5/export-payments.php (copied) (copied from wp-accounts/trunk/export-payments.php)
-
tags/1.9.5/includes/class-wpa-common.php (copied) (copied from wp-accounts/trunk/includes/class-wpa-common.php)
-
tags/1.9.5/includes/customize-controls.js (copied) (copied from wp-accounts/trunk/includes/customize-controls.js)
-
tags/1.9.5/readme.txt (copied) (copied from wp-accounts/trunk/readme.txt) (3 diffs)
-
tags/1.9.5/wp-accounts.php (copied) (copied from wp-accounts/trunk/wp-accounts.php) (7 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-accounts.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-accounts/tags/1.9.5/readme.txt
r3433647 r3436634 6 6 Tested up to: 6.9 7 7 Requires PHP: 6.2 8 Stable tag: 1.9. 48 Stable tag: 1.9.5 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 54 54 == Changelog == 55 55 56 = 1.9.5 = 57 * Fixed bugs viewing / editing payments and copying existing invoices 58 56 59 = 1.9.4 = 57 60 * Fixed bugs with date picker and new Reports page … … 294 297 == Upgrade Notice == 295 298 296 = 1.9. 4=297 * Fixed bugs with date picker and new Reports page299 = 1.9.5 = 300 * Fixed bugs viewing / editing payments and copying existing invoices -
wp-accounts/tags/1.9.5/wp-accounts.php
r3433647 r3436634 2 2 /* 3 3 * Plugin Name: Web:D Accounts 4 * Version: 1.9. 44 * Version: 1.9.5 5 5 * Plugin URI: https://webd.uk/support/ 6 6 * Description: Manage your Clients, Invoices, Receipts and Payments. Send Invoices and Receipts to clients via email. … … 24 24 class wpaccounts_class { 25 25 26 public static $version = '1.9. 4';26 public static $version = '1.9.5'; 27 27 28 28 private $cart_message = ''; … … 1192 1192 global $edit_invoices, $wpdb; 1193 1193 1194 $copy_invoice = isset($ GET_['copy']);1194 $copy_invoice = isset($_GET['copy']); 1195 1195 1196 1196 $options = get_option('wp_accounts_options'); … … 1250 1250 1251 1251 foreach ($invoice_status as $status) { 1252 1253 1252 ?> 1254 1253 <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> … … 4030 4029 <strong><?php echo esc_html($payment->ID); ?></strong> - <?php echo esc_html($payment->payment_method); ?> 4031 4030 <div class="row-actions-visible"> 4032 <span class="edit"><a href="?page=manage-payments $amp;_wpnonce=<?php echo esc_attr($nonce); ?>&id=<?php echo esc_attr($payment->ID); ?>&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); ?>&id=<?php echo esc_attr($payment->ID); ?>&edit=true&copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span>4031 <span class="edit"><a href="?page=manage-payments&_wpnonce=<?php echo esc_attr($nonce); ?>&id=<?php echo esc_attr($payment->ID); ?>&edit=true"><?php esc_html_e('Edit', 'wp-accounts'); ?></a> | </span> 4032 <span class="edit"><a href="?page=manage-payments&_wpnonce=<?php echo esc_attr($nonce); ?>&id=<?php echo esc_attr($payment->ID); ?>&edit=true&copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span> 4034 4033 </div> 4035 4034 </td> … … 4086 4085 4087 4086 ?> 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 "' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '"?')) { 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 "' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '"?')) { window.location.href = location.href + '&supplier=' + this.value + '&merge=<?php echo esc_attr(urlencode($supplier)); ?>&_wpnonce=<?php echo esc_attr($nonce); ?>'; }"> 4089 4088 <option value="" selected="selected">Select ...</option> 4090 4089 <?php … … 4472 4471 <div class="icon32" id="icon-edit"><br></div> 4473 4472 <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;"> 4475 4474 <option value="" selected="selected">Select ...</option> 4476 4475 <?php -
wp-accounts/trunk/readme.txt
r3433647 r3436634 6 6 Tested up to: 6.9 7 7 Requires PHP: 6.2 8 Stable tag: 1.9. 48 Stable tag: 1.9.5 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 54 54 == Changelog == 55 55 56 = 1.9.5 = 57 * Fixed bugs viewing / editing payments and copying existing invoices 58 56 59 = 1.9.4 = 57 60 * Fixed bugs with date picker and new Reports page … … 294 297 == Upgrade Notice == 295 298 296 = 1.9. 4=297 * Fixed bugs with date picker and new Reports page299 = 1.9.5 = 300 * Fixed bugs viewing / editing payments and copying existing invoices -
wp-accounts/trunk/wp-accounts.php
r3433647 r3436634 2 2 /* 3 3 * Plugin Name: Web:D Accounts 4 * Version: 1.9. 44 * Version: 1.9.5 5 5 * Plugin URI: https://webd.uk/support/ 6 6 * Description: Manage your Clients, Invoices, Receipts and Payments. Send Invoices and Receipts to clients via email. … … 24 24 class wpaccounts_class { 25 25 26 public static $version = '1.9. 4';26 public static $version = '1.9.5'; 27 27 28 28 private $cart_message = ''; … … 1192 1192 global $edit_invoices, $wpdb; 1193 1193 1194 $copy_invoice = isset($ GET_['copy']);1194 $copy_invoice = isset($_GET['copy']); 1195 1195 1196 1196 $options = get_option('wp_accounts_options'); … … 1250 1250 1251 1251 foreach ($invoice_status as $status) { 1252 1253 1252 ?> 1254 1253 <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> … … 4030 4029 <strong><?php echo esc_html($payment->ID); ?></strong> - <?php echo esc_html($payment->payment_method); ?> 4031 4030 <div class="row-actions-visible"> 4032 <span class="edit"><a href="?page=manage-payments $amp;_wpnonce=<?php echo esc_attr($nonce); ?>&id=<?php echo esc_attr($payment->ID); ?>&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); ?>&id=<?php echo esc_attr($payment->ID); ?>&edit=true&copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span>4031 <span class="edit"><a href="?page=manage-payments&_wpnonce=<?php echo esc_attr($nonce); ?>&id=<?php echo esc_attr($payment->ID); ?>&edit=true"><?php esc_html_e('Edit', 'wp-accounts'); ?></a> | </span> 4032 <span class="edit"><a href="?page=manage-payments&_wpnonce=<?php echo esc_attr($nonce); ?>&id=<?php echo esc_attr($payment->ID); ?>&edit=true&copy=true"><?php esc_html_e('Copy', 'wp-accounts'); ?></a></span> 4034 4033 </div> 4035 4034 </td> … … 4086 4085 4087 4086 ?> 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 "' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '"?')) { 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 "' + decodeURIComponent(this.value.replace(/\+/g, '%20')) + '"?')) { window.location.href = location.href + '&supplier=' + this.value + '&merge=<?php echo esc_attr(urlencode($supplier)); ?>&_wpnonce=<?php echo esc_attr($nonce); ?>'; }"> 4089 4088 <option value="" selected="selected">Select ...</option> 4090 4089 <?php … … 4472 4471 <div class="icon32" id="icon-edit"><br></div> 4473 4472 <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;"> 4475 4474 <option value="" selected="selected">Select ...</option> 4476 4475 <?php
Note: See TracChangeset
for help on using the changeset viewer.