Plugin Directory

Changeset 896973


Ignore:
Timestamp:
04/18/2014 02:34:29 AM (12 years ago)
Author:
fduraibi
Message:

Fix for WP 3.9

Location:
wp-rtl/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-rtl/trunk/readme.txt

    r777351 r896973  
    44Tags: rtl, ltr, wysiwyg, formatting, tinymce, write, edit, post
    55Requires at least: 2.6
    6 Tested up to: 3.6.1
    7 Stable tag: 0.2
     6Tested up to: 3.9
     7Stable tag: 0.3
    88
    99Adds two buttons to the TinyMCE editor to enable writing text in Left to Right (LTR) and Right to Left (RTL) directions.
     
    2828== Changelog ==
    2929
     30* 0.3 Fixed for WP 3.9
    3031* 0.2 Fixed compatibility issue with wordpress 2.8
    3132* 0.1 First release
  • wp-rtl/trunk/wp-rtl.php

    r664598 r896973  
    44Plugin URI: http://www.fadvisor.net/blog/2008/10/wp-rtl/
    55Description: Adds two buttons to the TinyMCE editor to enable writing text in Left to Right (LTR) and Right to Left (RTL) directions.
    6 Version: 0.2
     6Version: 0.3
    77Author: Fahad Alduraibi
    88Author URI: http://www.fadvisor.net/blog/
     
    4343
    4444function tinymce_bidi_plugin($plugin_array) {
    45     $plugin_array['directionality'] = includes_url('js/tinymce/plugins/directionality/editor_plugin.js');
    46 
     45    if (get_bloginfo('version') < 3.9) {
     46        $plugin_array['directionality'] = includes_url('js/tinymce/plugins/directionality/editor_plugin.js');
     47    } else {
     48        $plugin_array['directionality'] = includes_url('js/tinymce/plugins/directionality/plugin.min.js');
     49    }
    4750    return $plugin_array;
    4851}
Note: See TracChangeset for help on using the changeset viewer.