Changeset 438281
- Timestamp:
- 09/14/2011 11:35:54 PM (14 years ago)
- Location:
- people-lists/trunk
- Files:
-
- 2 edited
-
people-lists.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
people-lists/trunk/people-lists.php
r428757 r438281 247 247 wp_enqueue_script('people-lists-tinymce', plugins_url('/people-lists/js/people-lists-tinymce.js'),'jquery'); 248 248 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'); 250 250 } 251 251 function people_lists_tiny_filter_remove_fullscreen($initArray){ … … 822 822 } 823 823 824 825 824 /** 825 * people_lists_tiny_filter_remove_fullscreen function. 826 * 827 * @access public 828 * @param mixed $initArray 829 * @return void 830 */ 831 function people_lists_tiny_filter_remove_fullscreen($initArray){ 832 $initArray["theme_advanced_buttons1"] = str_replace(',fullscreen', '', $initArray["theme_advanced_buttons1"]); 833 return $initArray; 834 835 } 826 836 827 837 /* --- End of File --- */ -
people-lists/trunk/readme.txt
r428757 r438281 96 96 97 97 == 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 98 102 = 1.3.4 = 99 103 * bug fix, compatibility with 3.2
Note: See TracChangeset
for help on using the changeset viewer.