Plugin Directory

Changeset 3216067


Ignore:
Timestamp:
01/02/2025 04:09:21 PM (15 months ago)
Author:
tidschi
Message:

Update to version 3.8 from GitHub

Location:
mareike
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • mareike/tags/3.8/app/controllers/invoices/class-createinvoice.php

    r3211883 r3216067  
    144144                $amount           = null;
    145145                $travel_direction = null;
    146                 $oepnv_amount     = (float) sanitize_text_field( wp_unslash( $_POST['oepnv_amount'] ) );
     146                $oepnv_amount     = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['oepnv_amount'] ) ));
    147147
    148148                $cost_type = 'Travelling';
     
    174174                if ( 'Travelling' !== $cost_type ) {
    175175                    $distance = 0;
    176                     $amount   = (float) sanitize_text_field( wp_unslash( $_POST['amount'] ) );
     176                    $amount   = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['amount'] ) ));
    177177                }
    178178
  • mareike/tags/3.8/core/gui.php

    r3215643 r3216067  
    7878
    7979    wp_enqueue_script(
    80         'mareike-seetings',
     80        'mareike-settings',
    8181        MAREIKE_PLUGIN_URL . '/assets/javascripts/mareike-settings.js',
    8282        array(),
     
    9090        array(),
    9191        $plugin_data['Version'],
    92         true
    9392    );
    9493
  • mareike/tags/3.8/mareike.php

    r3215643 r3216067  
    33 * Plugin Name:  mareike
    44 * Description: A tool to help associations to manage travel or material costs for events or ongoing jobs.
    5  * Version: 3.7
     5 * Version: 3.8
    66 * Tags: mareike, administration, fincance, travelmanagement, association tool
    77 * Requires at least: 6.0
  • mareike/tags/3.8/readme.txt

    r3215643 r3216067  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 3.7
     6Stable tag: 3.8
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## 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
    4145= 3.7 =
    4246* [BUG] Minor fixes in displaying own invoices
  • mareike/trunk/app/controllers/invoices/class-createinvoice.php

    r3211883 r3216067  
    144144                $amount           = null;
    145145                $travel_direction = null;
    146                 $oepnv_amount     = (float) sanitize_text_field( wp_unslash( $_POST['oepnv_amount'] ) );
     146                $oepnv_amount     = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['oepnv_amount'] ) ));
    147147
    148148                $cost_type = 'Travelling';
     
    174174                if ( 'Travelling' !== $cost_type ) {
    175175                    $distance = 0;
    176                     $amount   = (float) sanitize_text_field( wp_unslash( $_POST['amount'] ) );
     176                    $amount   = (float) str_replace(',', '.', sanitize_text_field( wp_unslash( $_POST['amount'] ) ));
    177177                }
    178178
  • mareike/trunk/core/gui.php

    r3215643 r3216067  
    7878
    7979    wp_enqueue_script(
    80         'mareike-seetings',
     80        'mareike-settings',
    8181        MAREIKE_PLUGIN_URL . '/assets/javascripts/mareike-settings.js',
    8282        array(),
     
    9090        array(),
    9191        $plugin_data['Version'],
    92         true
    9392    );
    9493
  • mareike/trunk/mareike.php

    r3215643 r3216067  
    33 * Plugin Name:  mareike
    44 * Description: A tool to help associations to manage travel or material costs for events or ongoing jobs.
    5  * Version: 3.7
     5 * Version: 3.8
    66 * Tags: mareike, administration, fincance, travelmanagement, association tool
    77 * Requires at least: 6.0
  • mareike/trunk/readme.txt

    r3215643 r3216067  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 3.7
     6Stable tag: 3.8
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## 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
    4145= 3.7 =
    4246* [BUG] Minor fixes in displaying own invoices
Note: See TracChangeset for help on using the changeset viewer.