Changeset 3216067
- Timestamp:
- 01/02/2025 04:09:21 PM (15 months ago)
- Location:
- mareike
- Files:
-
- 8 edited
- 1 copied
-
tags/3.8 (copied) (copied from mareike/trunk)
-
tags/3.8/app/controllers/invoices/class-createinvoice.php (modified) (2 diffs)
-
tags/3.8/core/gui.php (modified) (2 diffs)
-
tags/3.8/mareike.php (modified) (1 diff)
-
tags/3.8/readme.txt (modified) (2 diffs)
-
trunk/app/controllers/invoices/class-createinvoice.php (modified) (2 diffs)
-
trunk/core/gui.php (modified) (2 diffs)
-
trunk/mareike.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mareike/tags/3.8/app/controllers/invoices/class-createinvoice.php
r3211883 r3216067 144 144 $amount = null; 145 145 $travel_direction = null; 146 $oepnv_amount = (float) s anitize_text_field( wp_unslash( $_POST['oepnv_amount'] ));146 $oepnv_amount = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['oepnv_amount'] ) )); 147 147 148 148 $cost_type = 'Travelling'; … … 174 174 if ( 'Travelling' !== $cost_type ) { 175 175 $distance = 0; 176 $amount = (float) s anitize_text_field( wp_unslash( $_POST['amount'] ));176 $amount = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['amount'] ) )); 177 177 } 178 178 -
mareike/tags/3.8/core/gui.php
r3215643 r3216067 78 78 79 79 wp_enqueue_script( 80 'mareike-se etings',80 'mareike-settings', 81 81 MAREIKE_PLUGIN_URL . '/assets/javascripts/mareike-settings.js', 82 82 array(), … … 90 90 array(), 91 91 $plugin_data['Version'], 92 true93 92 ); 94 93 -
mareike/tags/3.8/mareike.php
r3215643 r3216067 3 3 * Plugin Name: mareike 4 4 * Description: A tool to help associations to manage travel or material costs for events or ongoing jobs. 5 * Version: 3. 75 * Version: 3.8 6 6 * Tags: mareike, administration, fincance, travelmanagement, association tool 7 7 * Requires at least: 6.0 -
mareike/tags/3.8/readme.txt
r3215643 r3216067 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7 6 Stable tag: 3. 76 Stable tag: 3.8 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 3.8 = 42 * [BUG] Fixed JS error on displaying "Deny invoice" dialog 43 * [BUG] Fixed issue on creating invoices with digits after comma 44 41 45 = 3.7 = 42 46 * [BUG] Minor fixes in displaying own invoices -
mareike/trunk/app/controllers/invoices/class-createinvoice.php
r3211883 r3216067 144 144 $amount = null; 145 145 $travel_direction = null; 146 $oepnv_amount = (float) s anitize_text_field( wp_unslash( $_POST['oepnv_amount'] ));146 $oepnv_amount = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['oepnv_amount'] ) )); 147 147 148 148 $cost_type = 'Travelling'; … … 174 174 if ( 'Travelling' !== $cost_type ) { 175 175 $distance = 0; 176 $amount = (float) s anitize_text_field( wp_unslash( $_POST['amount'] ));176 $amount = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['amount'] ) )); 177 177 } 178 178 -
mareike/trunk/core/gui.php
r3215643 r3216067 78 78 79 79 wp_enqueue_script( 80 'mareike-se etings',80 'mareike-settings', 81 81 MAREIKE_PLUGIN_URL . '/assets/javascripts/mareike-settings.js', 82 82 array(), … … 90 90 array(), 91 91 $plugin_data['Version'], 92 true93 92 ); 94 93 -
mareike/trunk/mareike.php
r3215643 r3216067 3 3 * Plugin Name: mareike 4 4 * Description: A tool to help associations to manage travel or material costs for events or ongoing jobs. 5 * Version: 3. 75 * Version: 3.8 6 6 * Tags: mareike, administration, fincance, travelmanagement, association tool 7 7 * Requires at least: 6.0 -
mareike/trunk/readme.txt
r3215643 r3216067 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7 6 Stable tag: 3. 76 Stable tag: 3.8 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 3.8 = 42 * [BUG] Fixed JS error on displaying "Deny invoice" dialog 43 * [BUG] Fixed issue on creating invoices with digits after comma 44 41 45 = 3.7 = 42 46 * [BUG] Minor fixes in displaying own invoices
Note: See TracChangeset
for help on using the changeset viewer.