Changeset 694 for trunk/wp-admin/edit-form.php
- Timestamp:
- 01/03/2004 12:13:11 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-form.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form.php
r670 r694 26 26 if ($use_trackback) { 27 27 $form_trackback = '<p><label for="trackback"><a href="http://wordpress.org/docs/reference/post/#trackback" title="Help on trackbacks"><strong>TrackBack</strong> an <acronym title="Uniform Resource Locator">URL</acronym></a>:</label> (Separate multiple <acronym title="Uniform Resource Locator">URL</acronym>s with spaces.)<br /> 28 <input type="text" name="trackback_url" style="width: 415px" id="trackback" tabindex="7" /></p>';28 <input type="text" name="trackback_url" style="width: 360px" id="trackback" tabindex="7" /></p>'; 29 29 if ('' != $pinged) { 30 30 $form_trackback .= '<p>Already pinged:</p><ul>'; … … 45 45 46 46 <form name="post" action="post.php" method="post" id="post"> 47 48 <?php 49 if ('bookmarklet' == $mode) { 50 echo '<input type="hidden" name="mode" value="bookmarklet" />'; 51 } 52 ?> 47 53 <input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" /> 48 54 <input type="hidden" name="action" value='<?php echo $form_action . $form_extra ?>' /> … … 74 80 75 81 <br /> 76 <fieldset style="clear:both">82 <fieldset id="postdiv"> 77 83 <legend><a href="http://wordpress.org/docs/reference/post/#post" title="Help with post field">Post</a></legend> 78 84 <div id="quicktags"> 79 85 <?php 80 if ($use_quicktags ) {86 if ($use_quicktags && 'bookmarklet' != $mode) { 81 87 echo '<a href="http://wordpress.org/docs/reference/post/#quicktags" title="Help with quicktags">Quicktags</a>: '; 82 88 include('quicktags.php'); … … 109 115 <input name="saveasprivate" type="submit" id="saveasprivate" tabindex="10" value="Save as Private" /> 110 116 <input name="publish" type="submit" id="publish" tabindex="6" style="font-weight: bold;" value="Publish" /> 111 <input name="advanced" type="submit" id="advancededit" tabindex="7" value="Advanced Editing »" /> 117 <?php if ('bookmarklet' != $mode) { 118 echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="Advanced Editing »" />'; 119 } ?> 112 120 <input name="referredby" type="hidden" id="referredby" value="<?php echo $HTTP_SERVER_VARS['HTTP_REFERER']; ?>" /> 113 121 </p>
Note: See TracChangeset
for help on using the changeset viewer.