Plugin Directory

Changeset 438281


Ignore:
Timestamp:
09/14/2011 11:35:54 PM (14 years ago)
Author:
oltdev
Message:

update to 1.3.5

Location:
people-lists/trunk
Files:
2 edited

Legend:

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

    r428757 r438281  
    247247    wp_enqueue_script('people-lists-tinymce', plugins_url('/people-lists/js/people-lists-tinymce.js'),'jquery');
    248248   
    249     add_filter( 'tiny_mce_before_init', 'clf_base_tiny_filter_remove_fullscreen');
     249    add_filter( 'tiny_mce_before_init', 'people_lists_tiny_filter_remove_fullscreen');
    250250}
    251251function people_lists_tiny_filter_remove_fullscreen($initArray){
     
    822822}
    823823
    824 
    825 
     824/**
     825 * people_lists_tiny_filter_remove_fullscreen function.
     826 *
     827 * @access public
     828 * @param mixed $initArray
     829 * @return void
     830 */
     831function people_lists_tiny_filter_remove_fullscreen($initArray){
     832    $initArray["theme_advanced_buttons1"] = str_replace(',fullscreen', '', $initArray["theme_advanced_buttons1"]);
     833    return $initArray;
     834   
     835}
    826836
    827837/* --- End of File --- */
  • people-lists/trunk/readme.txt

    r428757 r438281  
    9696
    9797== Changelog ==
     98= 1.3.5 =
     99* bug fix: removed unused clf_base_tiny_filter_remove_fullscreen and replaced it with people_lists_tiny_filter_remove_fullscreen
     100* Please don't download 1.3.4 because it doesn't work compatblity with 3.2 restored
     101
    98102= 1.3.4 =
    99103* bug fix, compatibility with 3.2
Note: See TracChangeset for help on using the changeset viewer.