Ticket #19598: 19598.2.diff
File 19598.2.diff, 4.0 KB (added by , 13 years ago) |
---|
-
wp-admin/theme-editor.php
226 226 <?php if (!$error) { ?> 227 227 <form name="template" id="template" action="theme-editor.php" method="post"> 228 228 <?php wp_nonce_field('edit-theme_' . $file . $theme) ?> 229 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1"><?php echo $content ?></textarea>229 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" class="code" tabindex="1"><?php echo $content ?></textarea> 230 230 <input type="hidden" name="action" value="update" /> 231 231 <input type="hidden" name="file" value="<?php echo esc_attr($file) ?>" /> 232 232 <input type="hidden" name="theme" value="<?php echo esc_attr($theme) ?>" /> -
wp-admin/options-general.php
113 113 </tr> 114 114 <tr valign="top"> 115 115 <th scope="row"><label for="admin_email"><?php _e('E-mail Address') ?> </label></th> 116 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text " />116 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text code" /> 117 117 <span class="description"><?php _e('This address is used for admin purposes, like new user notification.') ?></span></td> 118 118 </tr> 119 119 <tr valign="top"> -
wp-admin/css/wp-admin-rtl.dev.css
111 111 float: left; 112 112 } 113 113 114 input.code, 115 textarea.code, 116 select#docs-list { 117 direction: ltr; 118 } 114 119 120 115 121 /*------------------------------------------------------------------------------ 116 122 3.0 - Actions 117 123 ------------------------------------------------------------------------------*/ … … 2309 2315 float: left; 2310 2316 } 2311 2317 2312 #template textarea {2313 direction: ltr;2314 }2315 2316 2318 /* theme-install */ 2317 2319 div.star { 2318 2320 left:auto; -
wp-admin/options-writing.php
145 145 </tr> 146 146 <tr valign="top"> 147 147 <th scope="row"><label for="mailserver_login"><?php _e('Login Name') ?></label></th> 148 <td><input name="mailserver_login" type="text" id="mailserver_login" value="<?php form_option('mailserver_login'); ?>" class="regular-text " /></td>148 <td><input name="mailserver_login" type="text" id="mailserver_login" value="<?php form_option('mailserver_login'); ?>" class="regular-text code" /></td> 149 149 </tr> 150 150 <tr valign="top"> 151 151 <th scope="row"><label for="mailserver_pass"><?php _e('Password') ?></label></th> 152 152 <td> 153 <input name="mailserver_pass" type="text" id="mailserver_pass" value="<?php form_option('mailserver_pass'); ?>" class="regular-text " />153 <input name="mailserver_pass" type="text" id="mailserver_pass" value="<?php form_option('mailserver_pass'); ?>" class="regular-text code" /> 154 154 </td> 155 155 </tr> 156 156 <tr valign="top"> -
wp-admin/plugin-editor.php
225 225 </div> 226 226 <form name="template" id="template" action="plugin-editor.php" method="post"> 227 227 <?php wp_nonce_field('edit-plugin_' . $file) ?> 228 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1"><?php echo $content ?></textarea>228 <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" class="code" tabindex="1"><?php echo $content ?></textarea> 229 229 <input type="hidden" name="action" value="update" /> 230 230 <input type="hidden" name="file" value="<?php echo esc_attr($file) ?>" /> 231 231 <input type="hidden" name="plugin" value="<?php echo esc_attr($plugin) ?>" />