Changeset 221
- Timestamp:
- 06/12/2003 10:47:45 PM (22 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
-
b2profile.php (modified) (3 diffs)
-
b2verifauth.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/b2profile.php
r204 r221 35 35 } 36 36 37 require_once('../ b2config.php');37 require_once('../wp-config.php'); 38 38 require_once($abspath.$b2inc.'/b2functions.php'); 39 39 … … 325 325 if ($is_NS4 || $is_gecko) { 326 326 ?> 327 <a href="javascript:Q=document.selection?document.selection.createRange().text:document.getSelection();void(window.open('<?php echo $ path?>/wp-admin/b2bookmarklet.php?text='+escape(Q)+'<?php echo $bookmarklet_tbpb ?>&popupurl='+escape(location.href)+'&popuptitle='+escape(document.title),'WordPress bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));">WordPress327 <a href="javascript:Q=document.selection?document.selection.createRange().text:document.getSelection();void(window.open('<?php echo $siteurl ?>/wp-admin/b2bookmarklet.php?text='+escape(Q)+'<?php echo $bookmarklet_tbpb ?>&popupurl='+escape(location.href)+'&popuptitle='+escape(document.title),'WordPress bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));">WordPress 328 328 - <?php echo $blogname ?></a> 329 329 <?php 330 330 } else if ($is_winIE) { 331 331 ?> 332 <a href="javascript:Q='';if(top.frames.length==0)Q=document.selection.createRange().text;void(btw=window.open('<?php echo $ path?>/wp-admin/b2bookmarklet.php?text='+escape(Q)+'<?php echo $bookmarklet_tbpb ?>&popupurl='+escape(location.href)+'&popuptitle='+escape(document.title),'b2bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));btw.focus();">WordPress332 <a href="javascript:Q='';if(top.frames.length==0)Q=document.selection.createRange().text;void(btw=window.open('<?php echo $siteurl ?>/wp-admin/b2bookmarklet.php?text='+escape(Q)+'<?php echo $bookmarklet_tbpb ?>&popupurl='+escape(location.href)+'&popuptitle='+escape(document.title),'b2bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));btw.focus();">WordPress 333 333 - <?php echo $blogname ?></a> 334 334 <script type="text/javascript" language="JavaScript"> … … 346 346 } else if ($is_opera) { 347 347 ?> 348 <a href="javascript:void(window.open('<?php echo $ path?>/wp-admin/b2bookmarklet.php?popupurl='+escape(location.href)+'&popuptitle='+escape(document.title)+'<?php echo $bookmarklet_tbpb ?>','b2bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));">WordPress348 <a href="javascript:void(window.open('<?php echo $siteurl ?>/wp-admin/b2bookmarklet.php?popupurl='+escape(location.href)+'&popuptitle='+escape(document.title)+'<?php echo $bookmarklet_tbpb ?>','b2bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));">WordPress 349 349 - <?php echo $blogname ?></a> 350 350 <?php 351 351 } else if ($is_macIE) { 352 352 ?> 353 <a href="javascript:Q='';if(top.frames.length==0);void(btw=window.open('<?php echo $ path?>/wp-admin/b2bookmarklet.php?text='+escape(document.getSelection())+'&popupurl='+escape(location.href)+'&popuptitle='+escape(document.title)+'<?php echo $bookmarklet_tbpb ?>','b2bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));btw.focus();">WordPress353 <a href="javascript:Q='';if(top.frames.length==0);void(btw=window.open('<?php echo $siteurl ?>/wp-admin/b2bookmarklet.php?text='+escape(document.getSelection())+'&popupurl='+escape(location.href)+'&popuptitle='+escape(document.title)+'<?php echo $bookmarklet_tbpb ?>','b2bookmarklet','scrollbars=no,width=480,height=<?php echo $bookmarklet_height ?>,left=100,top=150,status=yes'));btw.focus();">WordPress 354 354 - <?php echo $blogname ?></a> 355 355 <?php -
trunk/wp-admin/b2verifauth.php
r152 r221 1 1 <?php 2 2 3 require_once('../ b2config.php');3 require_once('../wp-config.php'); 4 4 5 5 /* checking login & pass in the database */ … … 42 42 $error="<strong>Error</strong>: wrong login or password"; 43 43 } 44 header("Location: $ path/b2login.php");44 header("Location: $siteurl/b2login.php"); 45 45 exit(); 46 46 }
Note: See TracChangeset
for help on using the changeset viewer.