Make WordPress Core


Ignore:
Timestamp:
05/24/2003 10:25:39 PM (22 years ago)
Author:
saxmatt
Message:

Path fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/b2bookmarklet.php

    r44 r84  
    7777    background-image: url('<?php
    7878if ($is_gecko || $is_IE) {
    79 ?>b2-img/bgbookmarklet1.gif<?php
     79?>../b2-img/bgbookmarklet1.gif<?php
    8080} else {
    81 ?>b2-img/bgbookmarklet3.gif<?php
     81?>../b2-img/bgbookmarklet3.gif<?php
    8282}
    8383?>');
     
    9090    background-color: transparent;
    9191<?php if ($is_gecko || $is_macIE) { ?>
    92     background-image: url('b2-img/bgbookmarklet.png');
     92    background-image: url('../b2-img/bgbookmarklet.png');
    9393<?php } elseif ($is_winIE) { ?>
    9494    background-color: #cccccc;
     
    158158<td align="left" width="415">
    159159<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>
    162162<td width="165" align="left" valign="bottom"><b>Category</b><br /><?php dropdown_categories(); ?></td>
    163163</table>
     
    169169<table width="415" cellpadding="0" cellspacing="0">
    170170<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>
    172172</table>
    173173<?php
     
    192192<table cellpadding="0" cellspacing="0">
    193193<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>
    195194</td>
    196195<?php if ($pingback) { ?>
     
    202201
    203202<?php if ($use_preview) { ?>
    204 <input type="button" value="preview" onclick="preview(this.form);" class="search" tabindex="8" />
     203<input type="button" value="preview" onClick="preview(this.form);" class="search" tabindex="8" />
    205204<?php } ?>
    206205
    207206<input type="submit" name="submit" value="Blog this !" class="search" tabindex="3" />
    208207
    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="DoSpell
    212 ('post','content','');" class="search" />
    213 <?php } ?>
    214208
    215209<?php if ( ($use_fileupload) && ($user_level >= $fileupload_minlevel) && ((ereg(" ".$user_login." ", $fileupload_allowedusers)) || (trim($fileupload_allowedusers)=="")) ) { ?>
    216 <input type="button" value="upload a file" onclick="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">
    220214<!--
    221215window.focus();
     
    229223<td width="40">&nbsp;</td>
    230224<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" />
    233227</td>
    234228</tr>
     
    239233</form>
    240234
    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>
    251236
    252237</body>
Note: See TracChangeset for help on using the changeset viewer.