Plugin Directory

Changeset 1942690


Ignore:
Timestamp:
09/17/2018 03:02:52 PM (8 years ago)
Author:
rudijuri
Message:

piccole correzioni

Location:
gestiolex/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gestiolex/trunk/gestiolex.php

    r1942503 r1942690  
    33Plugin Name: Gestiolex
    44Plugin URI: http://www.gestiolex.it
    5 Version: 1.3.9.2
     5Version: 1.3.9.3
    66Description: Gestionale per l'avvocato.
    77Author: Juri Rudi
  • gestiolex/trunk/pages/cerca_pratiche.php

    r1942502 r1942690  
    212212                $sql="SELECT pratica_id from $tabella_pratiche_persone where persona_id = $controparte_id and controparte = 1";
    213213                $result = $wpdb->get_results($sql);
    214                 $result_controparte = [];
     214                $result_controparte = array();
    215215                foreach ($result as $key => $row) {
    216216                    $pratica_id = $row->pratica_id;
     
    241241                $sql="SELECT pratica_id from $tabella_pratiche_persone where persona_id = $avvocato_id and avvocato = 1";
    242242                $result = $wpdb->get_results($sql);
    243                 $result_avvocato = [];
     243                $result_avvocato = array();
    244244                foreach ($result as $key => $row) {
    245245                    $pratica_id = $row->pratica_id;
     
    270270                $sql="SELECT pratica_id from $tabella_pratiche_persone where persona_id = $consulente_id and consulente = 1";
    271271                $result = $wpdb->get_results($sql);
    272                 $result_consulente = [];
     272                $result_consulente = array();
    273273                foreach ($result as $key => $row) {
    274274                    $pratica_id = $row->pratica_id;
  • gestiolex/trunk/pages/info_sistema.php

    r1942502 r1942690  
    4545    <tr>
    4646      <td><b>Web Browser in uso:</b></td>
    47       <td><?php echo $browser_utente . " (". $_SERVER['REMOTE_ADDR'] . ")";?></td>
     47      <td><?php echo $browser_utente . " (IP: ". $_SERVER['REMOTE_ADDR'] . ")";?></td>
    4848    </tr>
    4949<?php endif; ?>
  • gestiolex/trunk/readme.txt

    r1942502 r1942690  
    55Requires at least: 4.0
    66Tested up to: 4.9.8
    7 Stable tag: 1.3.9.2
     7Stable tag: 1.3.9.3
    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.