Plugin Directory

Changeset 2417802


Ignore:
Timestamp:
11/13/2020 09:05:39 AM (5 years ago)
Author:
todoapuestas
Message:

4.1.1

  • Added some fixes
Location:
tipster-tap/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tipster-tap/trunk/README.txt

    r2330693 r2417802  
    55Requires at least: 4.4
    66Tested up to: 5.4.2
    7 Stable tag: 4.1
     7Stable tag: 4.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 4.1.1 =
     57* Added some fixes
    5558
    5659= 4.1 =
  • tipster-tap/trunk/admin/includes/meta-boxes.php

    r1807534 r2417802  
    7575        if($tap_bookies){
    7676            foreach($tap_bookies as $k => $v){
    77                 $bookies[$k] = $v['nombre'];
     77                if(is_array($v) && in_array('nombre', $v)){
     78                    $bookies[$k] = $v['nombre'];
     79                }
    7880            }
    7981        }
     
    8385        if($tap_deportes){
    8486            foreach($tap_deportes as $k => $v){
    85                 $deportes[$k] = $v['nombre'];
     87                if(is_array($v) && in_array('nombre', $v)){
     88                    $deportes[$k] = $v['nombre'];
     89                }
    8690            }
    8791        }
     
    9195        if($tap_competiciones){
    9296            foreach($tap_competiciones as $k => $v){
    93                 $competiciones[$k] = $v['nombre'];
     97                if(is_array($v) && in_array('nombre', $v)){
     98                    $competiciones[$k] = $v['nombre'];
     99                }
    94100            }
    95101        }
  • tipster-tap/trunk/public/class-tipster-tap.php

    r2330693 r2417802  
    3333     * @var     string
    3434     */
    35     const VERSION = '4.1';
     35    const VERSION = '4.1.1';
    3636
    3737    /**
  • tipster-tap/trunk/tipster-tap.php

    r2330693 r2417802  
    1111 * Plugin URI:       https://wordpress.org/plugins/tipster-tap
    1212 * Description:       Plugin para gestionar tipsters y picks
    13  * Version:           4.1
     13 * Version:           4.1.1
    1414 * Author:       Alain Sanchez
    1515 * Author URI:       http://www.linkedin.com/in/mrbrazzi/
Note: See TracChangeset for help on using the changeset viewer.