Changeset 1812663
- Timestamp:
- 01/31/2018 11:22:16 AM (8 years ago)
- Location:
- hq60-fidelity-card/trunk
- Files:
-
- 3 edited
-
hq60fidelitycard.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
views/frontend/user-balance.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hq60-fidelity-card/trunk/hq60fidelitycard.php
r1809982 r1812663 7 7 Author: TRe Technology And Research S.r.l 8 8 Author URI: http://www.tresrl.it 9 Version: 1.6 9 Version: 1.6.1 10 10 License: GPL-2.0+ 11 11 */ -
hq60-fidelity-card/trunk/readme.txt
r1809982 r1812663 4 4 Requires at least: 4.8.2 5 5 Tested up to: 4.9.2 6 Stable tag: 1.6 6 Stable tag: 1.6.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 27 27 == Changelog == 28 28 29 = 1.6.1 = 30 * Bugfix 31 29 32 = 1.6 = 30 33 * Aggiunta possibilità di aggiornare la propria email ed il proprio numero di cellulare -
hq60-fidelity-card/trunk/views/frontend/user-balance.php
r1809120 r1812663 90 90 if ( isset ( $balance->balance ) ) { 91 91 92 if ( is_ array ( $balance->balance ) && ( count ($balance->balance ) > 0 ) ) {92 if ( is_object ( $balance->balance ) && ( count ( (array)$balance->balance ) > 0 ) ) { 93 93 94 94 ?> … … 99 99 <tr> 100 100 <th><?php _e( 'Prodotto / Servizio' , $this->get_language_domain() )?></th> 101 <th><?php _e( ' Quantità' , $this->get_language_domain() )?></th>101 <th><?php _e( 'Disponibili' , $this->get_language_domain() )?></th> 102 102 </tr> 103 103 </thead>
Note: See TracChangeset
for help on using the changeset viewer.