Plugin Directory

Changeset 1905095


Ignore:
Timestamp:
07/06/2018 09:24:51 AM (8 years ago)
Author:
rudijuri
Message:

Bug fix minori

Location:
gestiolex/trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • gestiolex/trunk/gestiolex.php

    r1822245 r1905095  
    33Plugin Name: Gestiolex
    44Plugin URI: http://www.gestiolex.it
    5 Version: 1.3.7
     5Version: 1.3.8
    66Description: Gestionale per l'avvocato.
    77Author: Juri Rudi
  • gestiolex/trunk/pages/grafici_fatture_fatturatomedio.php

    r1801342 r1905095  
    5959    // echo 'probe1_array:<pre>', print_r($probe1_array, true), "</pre>"; # visualizza l'indicizzazione dell'array
    6060
    61     $importo_fatture = array_sum($probe1_array);
    62     // echo "importo fatturato: ". $importo_fatture . "<br><br>";
     61    $importo_fatture = "";
     62    if ($probe1_array) {
     63        $importo_fatture = array_sum($probe1_array);
     64        // echo "importo fatturato: ". $importo_fatture . "<br><br>";
     65    }
    6366
    6467?>
  • gestiolex/trunk/pages/persona_scheda.php

    r1787756 r1905095  
    2323    include(GESTIOLEX_PATH . 'variabili_comuni.php');
    2424
     25    // include la classe gx_Persona
     26    // include(GESTIOLEX_PATH . 'classi/gx_persona.php');
     27
     28    // crea l'oggetto dalla classe
     29    // $gx_persona = new gx_Persona();
     30
    2531    global $elenco_coa;
    2632    global $province_italiane;
     
    2935    if (isset($_REQUEST['persona_id']) and $_REQUEST['persona_id'] > 0) {
    3036        $persona_id = (int)$_REQUEST['persona_id'];
     37
    3138        global $wpdb;
    3239        $tabella_persone = $wpdb->prefix . 'gx_persone';
  • gestiolex/trunk/readme.txt

    r1822245 r1905095  
    44Donate link: https://www.paypal.me/gestiolex
    55Requires at least: 4.0
    6 Tested up to: 4.9.4
    7 Stable tag: 1.3.7
     6Tested up to: 4.9.8
     7Stable tag: 1.3.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.