Changeset 84 for trunk/wp-admin/b2bookmarklet.php
- Timestamp:
- 05/24/2003 10:25:39 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/b2bookmarklet.php
r44 r84 77 77 background-image: url('<?php 78 78 if ($is_gecko || $is_IE) { 79 ?> b2-img/bgbookmarklet1.gif<?php79 ?>../b2-img/bgbookmarklet1.gif<?php 80 80 } else { 81 ?> b2-img/bgbookmarklet3.gif<?php81 ?>../b2-img/bgbookmarklet3.gif<?php 82 82 } 83 83 ?>'); … … 90 90 background-color: transparent; 91 91 <?php if ($is_gecko || $is_macIE) { ?> 92 background-image: url(' b2-img/bgbookmarklet.png');92 background-image: url('../b2-img/bgbookmarklet.png'); 93 93 <?php } elseif ($is_winIE) { ?> 94 94 background-color: #cccccc; … … 158 158 <td align="left" width="415"> 159 159 <table cellspacing="0" cellpadding="0"> 160 <td height="50" width="250" align="left" valign="bottom">< b>Title</b><br />161 <input type="text" name="post_title" size="20" tabindex="1" style="width: 215px;" value="<?php echo stripslashes($popuptitle) ?>" /></ td>160 <td height="50" width="250" align="left" valign="bottom"><label>Title<br /> 161 <input type="text" name="post_title" size="20" tabindex="1" style="width: 215px;" value="<?php echo stripslashes($popuptitle) ?>" /></label></td> 162 162 <td width="165" align="left" valign="bottom"><b>Category</b><br /><?php dropdown_categories(); ?></td> 163 163 </table> … … 169 169 <table width="415" cellpadding="0" cellspacing="0"> 170 170 <td align="left" valign="bottom"><b>Post</b></td> 171 <td align="right" valign="bottom"><?php if ($use_quicktags) include( $b2inc."/b2quicktags.php"); ?></td>171 <td align="right" valign="bottom"><?php if ($use_quicktags) include("b2quicktags.php"); ?></td> 172 172 </table> 173 173 <?php … … 192 192 <table cellpadding="0" cellspacing="0"> 193 193 <td align="left" width="90"> 194 <input type="checkbox" name="post_autobr" value="1" <?php if ($autobr) echo " checked" ?> tabindex="4" class="checkbox" id="autobr" /><label for="autobr"> Auto-BR</label>195 194 </td> 196 195 <?php if ($pingback) { ?> … … 202 201 203 202 <?php if ($use_preview) { ?> 204 <input type="button" value="preview" on click="preview(this.form);" class="search" tabindex="8" />203 <input type="button" value="preview" onClick="preview(this.form);" class="search" tabindex="8" /> 205 204 <?php } ?> 206 205 207 206 <input type="submit" name="submit" value="Blog this !" class="search" tabindex="3" /> 208 207 209 <?php if ($use_spellchecker) { ?>210 <!--<input type = "button" value = "Spell Check" onclick="var f=document.forms[0]; doSpell( 'en', f.post_content, '<?php echo $spellchecker_url ?>/sproxy.cgi', true);" class="search" tabindex="5" />-->211 <input type="button" value="Spellcheck" onclick="DoSpell212 ('post','content','');" class="search" />213 <?php } ?>214 208 215 209 <?php if ( ($use_fileupload) && ($user_level >= $fileupload_minlevel) && ((ereg(" ".$user_login." ", $fileupload_allowedusers)) || (trim($fileupload_allowedusers)=="")) ) { ?> 216 <input type="button" value="upload a file" on click="launchupload();" class="search" />217 <?php } ?> 218 219 <script language="JavaScript" >210 <input type="button" value="upload a file" onClick="launchupload();" class="search" /> 211 <?php } ?> 212 213 <script language="JavaScript" type="text/javascript"> 220 214 <!-- 221 215 window.focus(); … … 229 223 <td width="40"> </td> 230 224 <td width="415" align="left" height="40"> 231 < b>TrackBack</b> an URL:<br />232 <input type="text" name="trackback _url" style="width: 415px" />225 <label for="trackback"><strong>TrackBack</strong> an <acronym title="Uniform Resource Locator">URL</acronym>:</label> (Seperate multiple URLs with commas.)<br /> 226 <input type="text" name="trackback" style="width: 415px" /> 233 227 </td> 234 228 </tr> … … 239 233 </form> 240 234 241 <!-- this is for the spellchecker --> 242 <form name="SPELLDATA"><div> 243 <input name="formname" type="hidden" value=""> 244 <input name="messagebodyname" type="hidden" value=""> 245 <input name="subjectname" type="hidden" value=""> 246 <input name="companyID" type="hidden" value=""> 247 <input name="language" type="hidden" value=""> 248 <input name="opener" type="hidden" value=""> 249 <input name="formaction" type="hidden" value=""> 250 </div></form> 235 </div> 251 236 252 237 </body>
Note: See TracChangeset
for help on using the changeset viewer.