Ticket #2723: 2723.patch
File 2723.patch, 653 bytes (added by , 8 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/functions.php
176 176 * @return string Document title separator. 177 177 */ 178 178 function document_title_separator() { 179 return '—';179 return ( is_feed() ) ? '—' : '—'; 180 180 } 181 181 add_filter( 'document_title_separator', __NAMESPACE__ . '\document_title_separator' ); 182 182