Plugin Directory

Changeset 1952678


Ignore:
Timestamp:
10/06/2018 11:39:23 PM (7 years ago)
Author:
lcwakeman
Message:

1.11

  • PHP 7.1 bug fix
Location:
dmc-user-list
Files:
14 added
3 edited

Legend:

Unmodified
Added
Removed
  • dmc-user-list/trunk/dmc_user_list.php

    r1671243 r1952678  
    22/**
    33Plugin Name: DMC User List
    4 Version: 1.10
     4Version: 1.11
    55Plugin URI: tbd
    66Donate URI: tbd
     
    1010*/
    1111/**
    12 ** Copyright © Larry Wakeman - 2015
     12** Copyright © Larry Wakeman - 2018
    1313**
    1414** All rights reserved. No part of this publication may be reproduced, stored in a retrieval system,
  • dmc-user-list/trunk/objects/dmc_user_admin.php

    r1671243 r1952678  
    113113        // Get list of user fields     
    114114        $this->user = wp_get_current_user()->data;
     115        echo '<center>';
    115116        foreach ($this->meta as $key => $item) {
    116117            $var = '$this->user->'.$item['meta_key'].' = \''.$key.'\';';
    117             @eval ($var);
    118         }
     118            if (!strpos($item['meta_key'], '-')) @eval ($var);
     119        }
     120        echo '</center>';
    119121        $flush = array('ID', 'user_pass', 'user_url', 'user_registered', 'user_activation_key', 'user_status',
    120122                                     'rich_editing', 'comment_shortcuts', 'admin_color', 'show_admin_bar_front', 'wp_user_level',
  • dmc-user-list/trunk/readme.txt

    r1763428 r1952678  
    66Tags: User Listing 
    77Requires at least: 4.2.
    8 Tested up to: 4.9
    9 Stable tag: 1.10
     8Tested up to: 4.9.8
     9Stable tag: 1.11
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8585* Wordpress 4.8 Compatibiltiy
    8686
     87= 1.11 =
     88* PHP 7.1 bug fix
     89
    8790== Upgrade Notice ==
    8891
     
    121124= 1.10 =
    122125* Wordpress 4.8 Compatibiltiy
     126
     127= 1.11 =
     128* PHP 7.1 bug fix
    123129
    124130== Customization ==
Note: See TracChangeset for help on using the changeset viewer.