Changeset 3224301
- Timestamp:
- 01/17/2025 02:29:46 PM (15 months ago)
- Location:
- riskcube-von-creditreform-schweiz/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (3 diffs)
-
riskcube.php (modified) (1 diff)
-
src/Core/InvoiceGateway.php (modified) (1 diff)
-
src/Core/RiskCube.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
riskcube-von-creditreform-schweiz/trunk/readme.txt
r3206154 r3224301 5 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.4 7 Stable Tag: 2.4.12. 87 Stable Tag: 2.4.12.9 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 144 144 145 145 == Changelog == 146 147 = 2.4.12.9 = 148 **Bug Fixes** 149 - Fixed PHP warnings when new order is placed 150 146 151 = 2.4.12.8 = 147 152 **Bug Fixes** … … 149 154 150 155 = 2.4.12.7 = 151 152 156 **Bug Fixes** 153 157 - Fixed possible server error, when new order is created -
riskcube-von-creditreform-schweiz/trunk/riskcube.php
r3207462 r3224301 6 6 * Plugin Name: RiskCUBE von Creditreform Schweiz 7 7 * Plugin URI: 8 * Version: 2.4.12. 88 * Version: 2.4.12.9 9 9 * Description: RiskCube 10 10 * Author: Masterhomepage GmbH -
riskcube-von-creditreform-schweiz/trunk/src/Core/InvoiceGateway.php
r2962806 r3224301 121 121 public function email_instructions($order, $sent_to_admin, $plain_text = false) 122 122 { 123 if ($this->instructions && !$sent_to_admin && 'custom' === $order->payment_method && $order->has_status('on-hold')) { 123 $payment_method = $order->get_payment_method(); /* can not be called directly issue */ 124 if ($this->instructions && !$sent_to_admin && 'custom' === $payment_method && $order->has_status('on-hold')) { 124 125 echo wp_kses(wpautop(wptexturize($this->instructions)) . PHP_EOL, wp_kses_allowed_html()); 125 126 } -
riskcube-von-creditreform-schweiz/trunk/src/Core/RiskCube.php
r3206152 r3224301 273 273 public static function woocommerce_new_order($id_order) 274 274 { 275 static::on_order_state_change($id_order, $from, $to_status);275 static::on_order_state_change($id_order, 'new', 'pending'); 276 276 } 277 277
Note: See TracChangeset
for help on using the changeset viewer.