Changeset 27029 for trunk/src/wp-admin/network/settings.php
- Timestamp:
- 01/24/2014 07:05:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/settings.php
r26641 r27029 90 90 <h3><?php _e( 'Operational Settings' ); ?></h3> 91 91 <table class="form-table"> 92 <tr valign="top">92 <tr> 93 93 <th scope="row"><label for="site_name"><?php _e( 'Network Title' ) ?></label></th> 94 94 <td> … … 97 97 </tr> 98 98 99 <tr valign="top">99 <tr> 100 100 <th scope="row"><label for="admin_email"><?php _e( 'Network Admin Email' ) ?></label></th> 101 101 <td> … … 109 109 <h3><?php _e( 'Registration Settings' ); ?></h3> 110 110 <table class="form-table"> 111 <tr valign="top">111 <tr> 112 112 <th scope="row"><?php _e( 'Allow new registrations' ) ?></th> 113 113 <?php … … 129 129 </tr> 130 130 131 <tr valign="top">131 <tr> 132 132 <th scope="row"><?php _e( 'Registration notification' ) ?></th> 133 133 <?php … … 140 140 </tr> 141 141 142 <tr valign="top"id="addnewusers">142 <tr id="addnewusers"> 143 143 <th scope="row"><?php _e( 'Add New Users' ) ?></th> 144 144 <td> … … 147 147 </tr> 148 148 149 <tr valign="top">149 <tr> 150 150 <th scope="row"><label for="illegal_names"><?php _e( 'Banned Names' ) ?></label></th> 151 151 <td> … … 157 157 </tr> 158 158 159 <tr valign="top">159 <tr> 160 160 <th scope="row"><label for="limited_email_domains"><?php _e( 'Limited Email Registrations' ) ?></label></th> 161 161 <td> … … 170 170 </tr> 171 171 172 <tr valign="top">172 <tr> 173 173 <th scope="row"><label for="banned_email_domains"><?php _e('Banned Email Domains') ?></label></th> 174 174 <td> … … 185 185 <table class="form-table"> 186 186 187 <tr valign="top">187 <tr> 188 188 <th scope="row"><label for="welcome_email"><?php _e( 'Welcome Email' ) ?></label></th> 189 189 <td> … … 195 195 </td> 196 196 </tr> 197 <tr valign="top">197 <tr> 198 198 <th scope="row"><label for="welcome_user_email"><?php _e( 'Welcome User Email' ) ?></label></th> 199 199 <td> … … 205 205 </td> 206 206 </tr> 207 <tr valign="top">207 <tr> 208 208 <th scope="row"><label for="first_post"><?php _e( 'First Post' ) ?></label></th> 209 209 <td> … … 215 215 </td> 216 216 </tr> 217 <tr valign="top">217 <tr> 218 218 <th scope="row"><label for="first_page"><?php _e( 'First Page' ) ?></label></th> 219 219 <td> … … 225 225 </td> 226 226 </tr> 227 <tr valign="top">227 <tr> 228 228 <th scope="row"><label for="first_comment"><?php _e( 'First Comment' ) ?></label></th> 229 229 <td> … … 235 235 </td> 236 236 </tr> 237 <tr valign="top">237 <tr> 238 238 <th scope="row"><label for="first_comment_author"><?php _e( 'First Comment Author' ) ?></label></th> 239 239 <td> … … 244 244 </td> 245 245 </tr> 246 <tr valign="top">246 <tr> 247 247 <th scope="row"><label for="first_comment_url"><?php _e( 'First Comment URL' ) ?></label></th> 248 248 <td> … … 256 256 <h3><?php _e( 'Upload Settings' ); ?></h3> 257 257 <table class="form-table"> 258 <tr valign="top">258 <tr> 259 259 <th scope="row"><?php _e( 'Site upload space' ) ?></th> 260 260 <td> … … 263 263 </tr> 264 264 265 <tr valign="top">265 <tr> 266 266 <th scope="row"><label for="upload_filetypes"><?php _e( 'Upload file types' ) ?></label></th> 267 267 <td><input name="upload_filetypes" type="text" id="upload_filetypes" class="large-text" value="<?php echo esc_attr( get_site_option('upload_filetypes', 'jpg jpeg png gif') ) ?>" size="45" /></td> 268 268 </tr> 269 269 270 <tr valign="top">270 <tr> 271 271 <th scope="row"><label for="fileupload_maxk"><?php _e( 'Max upload file size' ) ?></label></th> 272 272 <td><?php printf( _x( '%s KB', 'File size in kilobytes' ), '<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />' ); ?></td> … … 281 281 <h3><?php _e( 'Language Settings' ); ?></h3> 282 282 <table class="form-table"> 283 <tr valign="top">283 <tr> 284 284 <th><label for="WPLANG"><?php _e( 'Default Language' ); ?></label></th> 285 285 <td> … … 296 296 <h3><?php _e( 'Menu Settings' ); ?></h3> 297 297 <table id="menu" class="form-table"> 298 <tr valign="top">298 <tr> 299 299 <th scope="row"><?php _e( 'Enable administration menus' ); ?></th> 300 300 <td>
Note: See TracChangeset
for help on using the changeset viewer.