Plugin Directory

Changeset 997690


Ignore:
Timestamp:
09/27/2014 04:15:08 PM (12 years ago)
Author:
iDo8p
Message:

update

Location:
wpmu-prefill-post/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpmu-prefill-post/trunk/readme.txt

    r898491 r997690  
    44donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4RR68K6J9GBR8
    55Requires at least: 3.0
    6 Tested up to: 3.9
     6Tested up to: 4.0
    77Stable tag: trunk
    88
     
    4141
    4242== Changelog ==
     43= 1.03 =
     44Fix problem with tiny_mce
    4345= 1.02 =
    4446Fix problem with mysql_real_escape_string
  • wpmu-prefill-post/trunk/wpmu-prefill-post.php

    r747733 r997690  
    2222
    2323                add_action('admin_init', array(&$this,'editorAdminInit'));
    24                 add_action('admin_head', array(&$this,'editorAdminHead'));
     24                //add_action('admin_head', array(&$this,'editorAdminHead'));
    2525            }
    2626            register_activation_hook( $this->plugin_name, array(&$this,'activate'));
     
    432432            wp_enqueue_script('utils');
    433433        }
    434         public function editorAdminHead(){
     434        /*public function editorAdminHead(){
    435435            wp_tiny_mce();
    436         }
     436        }*/
    437437        public function showForm($id=null, $content='', $title='', $excerpt=''){
    438438            ?>
     
    453453                            <h3 class="hndle"><span><?php _e('Content :',WPMUPrefillPost::DOMAIN); ?></span></h3>
    454454                            <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"); ?>
    456456                            </div>
    457457                        </div>
Note: See TracChangeset for help on using the changeset viewer.