Ticket #3696: wellformed.diff
File wellformed.diff, 6.6 KB (added by , 17 years ago) |
---|
-
edit-page-form.php
156 156 $uploading_iframe_src = wp_nonce_url("upload.php?style=inline&tab=upload&post_id=$uploading_iframe_ID", 'inlineuploading'); 157 157 $uploading_iframe_src = apply_filters('uploading_iframe_src', $uploading_iframe_src); 158 158 if ( false != $uploading_iframe_src ) 159 echo '<iframe id="uploading" frameborder="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>';159 echo '<iframe id="uploading" name="uploading" frameborder="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>'; 160 160 } 161 161 ?> 162 162 -
edit-link-form.php
80 80 <table class="editform" width="100%" cellspacing="2" cellpadding="5"> 81 81 <tr> 82 82 <th scope="row" valign="top"><label for="link_name"><?php _e('Name:') ?></label></th> 83 <td><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td>83 <td><input type="text" id="link_name" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td> 84 84 </tr> 85 85 <tr> 86 86 <th width="20%" scope="row" valign="top"><label for="link_url"><?php _e('Address:') ?></label></th> 87 <td width="80%"><input type="text" name="link_url" value="<?php echo $link->link_url; if ( empty( $link->link_url ) ) echo 'http://'; ?>" style="width: 95%" /></td> 87 <td width="80%"><input type="text" id="link_url" name="link_url" value="<?php echo $link->link_url; 88 if 89 ( empty( $link->link_url ) ) echo 'http://'; ?>" style="width: 95%" /></td> 88 90 </tr> 89 91 <tr> 90 92 <th scope="row" valign="top"><label for="link_description"><?php _e('Description:') ?></label></th> 91 <td><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td>93 <td><input type="text" id="link_description" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td> 92 94 </tr> 93 95 </table> 94 96 -
edit-form-advanced.php
183 183 $uploading_iframe_src = wp_nonce_url("upload.php?style=inline&tab=upload&post_id=$uploading_iframe_ID", 'inlineuploading'); 184 184 $uploading_iframe_src = apply_filters('uploading_iframe_src', $uploading_iframe_src); 185 185 if ( false != $uploading_iframe_src ) 186 echo '<iframe id="uploading" frameborder="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>';186 echo '<iframe id="uploading" name="uploading" frameborder="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>'; 187 187 } 188 188 ?> 189 189 -
edit.php
76 76 <form name="searchform" id="searchform" action="" method="get"> 77 77 <fieldset> 78 78 <legend><?php _e('Search Posts…') ?></legend> 79 <input type="text" name="s" value="<?php if (isset($s)) echo attribute_escape($s); ?>" size="17" />79 <input type="text" id="s" name="s" value="<?php if (isset($s)) echo attribute_escape($s); ?>" size="17" /> 80 80 <input type="submit" name="submit" value="<?php _e('Search') ?>" class="button" /> 81 81 </fieldset> 82 82 </form> -
profile.php
46 46 </label></p> 47 47 48 48 <p><label><?php _e('First name:') ?><br /> 49 <input type="text" name="first_name" value="<?php echo $profileuser->first_name ?>" /></label></p>49 <input type="text" id="first_name" name="first_name" value="<?php echo $profileuser->first_name ?>" /></label></p> 50 50 51 51 <p><label><?php _e('Last name:') ?><br /> 52 <input type="text" name="last_name" value="<?php echo $profileuser->last_name ?>" /></label></p>52 <input type="text" id="last_name" name="last_name" value="<?php echo $profileuser->last_name ?>" /></label></p> 53 53 54 54 <p><label><?php _e('Nickname:') ?><br /> 55 <input type="text" name="nickname" value="<?php echo $profileuser->nickname ?>" /></label></p>55 <input type="text" id="nickname" name="nickname" value="<?php echo $profileuser->nickname ?>" /></label></p> 56 56 57 57 <p><label><?php _e('Display name publicly as:') ?> <br /> 58 58 <select name="display_name"> -
options-permalink.php
158 158 <p><?php _e('If you like, you may enter a custom prefix for your category <abbr title="Universal Resource Locator">URL</abbr>s here. For example, <code>/index.php/taxonomy/tags</code> would make your category links like <code>http://example.org/index.php/taxonomy/tags/uncategorized/</code>. If you leave this blank the default will be used.') ?></p> 159 159 <?php endif; ?> 160 160 <p> 161 <?php _e('Category base'); ?>: <input name="category_base" type="text" class="code" value="<?php echo attribute_escape($category_base); ?>" size="30" />161 <?php _e('Category base'); ?>: <input id="category_base" name="category_base" type="text" class="code" value="<?php echo attribute_escape($category_base); ?>" size="30" /> 162 162 </p> 163 163 <p class="submit"> 164 164 <input type="submit" name="submit" value="<?php _e('Update Permalink Structure »') ?>" /> -
edit-pages.php
10 10 <h2><?php _e('Page Management'); ?></h2> 11 11 <p><?php _e('Pages are like posts except they live outside of the normal blog chronology and can be hierarchical. You can use pages to organize and manage any amount of content.'); ?> <a href="page-new.php"><?php _e('Create a new page »'); ?></a></p> 12 12 13 <form name="searchform" action="" method="get">13 <form id="searchform" name="searchform" action="" method="get"> 14 14 <fieldset> 15 15 <legend><?php _e('Search Pages…') ?></legend> 16 <input type="text" name="s" value="<?php if (isset($_GET['s'])) echo attribute_escape($_GET['s']); ?>" size="17" />16 <input type="text" id="s" name="s" value="<?php if (isset($_GET['s'])) echo attribute_escape($_GET['s']); ?>" size="17" /> 17 17 <input type="submit" name="submit" value="<?php _e('Search') ?>" /> 18 18 </fieldset> 19 19 </form>