Ticket #35988: 35988.patch
| File 35988.patch, 792 bytes (added by , 10 years ago) |
|---|
-
wp-admin/network/themes.php
143 143 <ul class="ul-disc"> 144 144 <?php 145 145 foreach ( $theme_info as $theme ) { 146 /* translators: 1: theme name, 2: theme author */ 147 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $theme->display('Name'), $theme->display('Author') ), '</li>'; 146 echo '<li>' . sprintf( 147 /* translators: 1: theme name, 2: theme author */ 148 __( '%1$s by %2$s' ), 149 '<strong>' . $theme->display('Name') . '</strong>', 150 '<em>' . $theme->display('Author') . '</em>' 151 ) . '</li>'; 148 152 } 149 153 ?> 150 154 </ul>