Changeset 997690
- Timestamp:
- 09/27/2014 04:15:08 PM (12 years ago)
- Location:
- wpmu-prefill-post/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wpmu-prefill-post.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmu-prefill-post/trunk/readme.txt
r898491 r997690 4 4 donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4RR68K6J9GBR8 5 5 Requires at least: 3.0 6 Tested up to: 3.96 Tested up to: 4.0 7 7 Stable tag: trunk 8 8 … … 41 41 42 42 == Changelog == 43 = 1.03 = 44 Fix problem with tiny_mce 43 45 = 1.02 = 44 46 Fix problem with mysql_real_escape_string -
wpmu-prefill-post/trunk/wpmu-prefill-post.php
r747733 r997690 22 22 23 23 add_action('admin_init', array(&$this,'editorAdminInit')); 24 add_action('admin_head', array(&$this,'editorAdminHead'));24 //add_action('admin_head', array(&$this,'editorAdminHead')); 25 25 } 26 26 register_activation_hook( $this->plugin_name, array(&$this,'activate')); … … 432 432 wp_enqueue_script('utils'); 433 433 } 434 public function editorAdminHead(){434 /*public function editorAdminHead(){ 435 435 wp_tiny_mce(); 436 } 436 }*/ 437 437 public function showForm($id=null, $content='', $title='', $excerpt=''){ 438 438 ?> … … 453 453 <h3 class="hndle"><span><?php _e('Content :',WPMUPrefillPost::DOMAIN); ?></span></h3> 454 454 <div class="inside"> 455 <?php the_editor(stripslashes(preg_replace(array('/\\\n+/','/\\\r+/'), array("",""),$content)),"content"); ?>455 <?php wp_editor(stripslashes(preg_replace(array('/\\\n+/','/\\\r+/'), array("",""),$content)),"content"); ?> 456 456 </div> 457 457 </div>
Note: See TracChangeset
for help on using the changeset viewer.