Ticket #12679: 12679.patch
| File 12679.patch, 987 bytes (added by johnbillion, 3 years ago) |
|---|
-
wp-admin/network.php
139 139 <table class="form-table"> 140 140 <tr> 141 141 <th><label><input type='radio' name='subdomain_install' value='1'<?php checked( $subdomain_install ); ?> /> Sub-domains</label></th> 142 <td><?php _e('like <code>site1.example.com</code> and <code>site2.example.com</code>'); ?></td>142 <td><?php printf( __('like <code>site1.%1$s</code> and <code>site2.%1$s</code>'), $hostname ); ?></td> 143 143 </tr> 144 144 <tr> 145 145 <th><label><input type='radio' name='subdomain_install' value='0'<?php checked( ! $subdomain_install ); ?> /> Sub-directories</label></th> 146 <td><?php _e('like <code>example.com/site1</code> and <code>example.com/site2</code>'); ?></td>146 <td><?php printf( __('like <code>%1$s/site1</code> and <code>%1$s/site2</code>'), $hostname ); ?></td> 147 147 </tr> 148 148 </table> 149 149