Ticket #19600: 19600.patch
File 19600.patch, 484 bytes (added by , 12 years ago) |
---|
-
wp-includes/locale.php
333 333 * @return bool Whether locale is RTL. 334 334 */ 335 335 function is_rtl() { 336 return 'rtl' == $this->text_direction; 336 $rtl_locales = array( 'ar', 'ckb', 'fa_IR', 'he_IL', 'ug_CN' ); 337 return in_array( get_locale(), $rtl_locales ) || 'rtl' == $this->text_direction; 337 338 } 338 339 } 339 340