Changeset 1942690
- Timestamp:
- 09/17/2018 03:02:52 PM (8 years ago)
- Location:
- gestiolex/trunk
- Files:
-
- 4 edited
-
gestiolex.php (modified) (1 diff)
-
pages/cerca_pratiche.php (modified) (3 diffs)
-
pages/info_sistema.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gestiolex/trunk/gestiolex.php
r1942503 r1942690 3 3 Plugin Name: Gestiolex 4 4 Plugin URI: http://www.gestiolex.it 5 Version: 1.3.9. 25 Version: 1.3.9.3 6 6 Description: Gestionale per l'avvocato. 7 7 Author: Juri Rudi -
gestiolex/trunk/pages/cerca_pratiche.php
r1942502 r1942690 212 212 $sql="SELECT pratica_id from $tabella_pratiche_persone where persona_id = $controparte_id and controparte = 1"; 213 213 $result = $wpdb->get_results($sql); 214 $result_controparte = [];214 $result_controparte = array(); 215 215 foreach ($result as $key => $row) { 216 216 $pratica_id = $row->pratica_id; … … 241 241 $sql="SELECT pratica_id from $tabella_pratiche_persone where persona_id = $avvocato_id and avvocato = 1"; 242 242 $result = $wpdb->get_results($sql); 243 $result_avvocato = [];243 $result_avvocato = array(); 244 244 foreach ($result as $key => $row) { 245 245 $pratica_id = $row->pratica_id; … … 270 270 $sql="SELECT pratica_id from $tabella_pratiche_persone where persona_id = $consulente_id and consulente = 1"; 271 271 $result = $wpdb->get_results($sql); 272 $result_consulente = [];272 $result_consulente = array(); 273 273 foreach ($result as $key => $row) { 274 274 $pratica_id = $row->pratica_id; -
gestiolex/trunk/pages/info_sistema.php
r1942502 r1942690 45 45 <tr> 46 46 <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> 48 48 </tr> 49 49 <?php endif; ?> -
gestiolex/trunk/readme.txt
r1942502 r1942690 5 5 Requires at least: 4.0 6 6 Tested up to: 4.9.8 7 Stable tag: 1.3.9. 27 Stable tag: 1.3.9.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.