Plugin Directory

Changeset 496334


Ignore:
Timestamp:
01/27/2012 11:20:41 PM (14 years ago)
Author:
oltdev
Message:

Bug fix for the bad encoding of the general info screen

Location:
people-lists/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • people-lists/trunk/people-lists.php

    r478922 r496334  
    99 *              desired to be displayed.     
    1010 * Author: Gagan Sandhu / Enej Bajgoric / CTLT DEV
    11  * Version: 1.3.8
     11 * Version: 1.3.9
    1212 * Author URI: http://www.ctlt.ubc.ca
    1313 * 
     
    6464
    6565
    66 function people_list_edit_user_profile_bio_field($user) { ?>
     66function people_list_edit_user_profile_bio_field($user) {
     67    $news_user = new WP_User( $user->ID );
     68?>
    6769    <table class="form-table">
    6870    <tr>
    6971        <th><label for="description"><?php _e('General Information'); ?></label></th>
    70         <td><?php wp_editor($user->description, "description-1", array('textarea_name'=>'description')); ?>
     72        <td><?php wp_editor($news_user->description, "description-1", array('textarea_name'=>'description')); ?>
    7173        <span class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></span></td>
    7274    </tr>
  • people-lists/trunk/readme.txt

    r478922 r496334  
    9696
    9797== Changelog ==
     98= 1.3.9 =
     99* bug fix: The editor converted was escaping the html string
     100
    98101= 1.3.8 =
    99102* bug fix: Compatibility with WordPress 3.3 it uses the new wp_editor API
Note: See TracChangeset for help on using the changeset viewer.