Changeset 896973
- Timestamp:
- 04/18/2014 02:34:29 AM (12 years ago)
- Location:
- wp-rtl/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-rtl.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-rtl/trunk/readme.txt
r777351 r896973 4 4 Tags: rtl, ltr, wysiwyg, formatting, tinymce, write, edit, post 5 5 Requires at least: 2.6 6 Tested up to: 3. 6.17 Stable tag: 0. 26 Tested up to: 3.9 7 Stable tag: 0.3 8 8 9 9 Adds two buttons to the TinyMCE editor to enable writing text in Left to Right (LTR) and Right to Left (RTL) directions. … … 28 28 == Changelog == 29 29 30 * 0.3 Fixed for WP 3.9 30 31 * 0.2 Fixed compatibility issue with wordpress 2.8 31 32 * 0.1 First release -
wp-rtl/trunk/wp-rtl.php
r664598 r896973 4 4 Plugin URI: http://www.fadvisor.net/blog/2008/10/wp-rtl/ 5 5 Description: 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. 26 Version: 0.3 7 7 Author: Fahad Alduraibi 8 8 Author URI: http://www.fadvisor.net/blog/ … … 43 43 44 44 function 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 } 47 50 return $plugin_array; 48 51 }
Note: See TracChangeset
for help on using the changeset viewer.