[wp-cvs] wordpress/wp-admin bookmarklet.php,1.11,1.12

Matthew Mullenweg saxmatt at users.sourceforge.net
Sun Aug 1 08:04:18 UTC 2004


Update of /cvsroot/cafelog/wordpress/wp-admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8919/wp-admin

Modified Files:
	bookmarklet.php 
Log Message:
Fix broken header.

Index: bookmarklet.php
===================================================================
RCS file: /cvsroot/cafelog/wordpress/wp-admin/bookmarklet.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** bookmarklet.php	15 Jun 2004 23:24:35 -0000	1.11
--- bookmarklet.php	1 Aug 2004 08:04:16 -0000	1.12
***************
*** 14,20 ****
  if ('b' == $a) {
  
! ?><html>
  <head>
! <script language="javascript" type="text/javascript">
  <!--
  window.close()
--- 14,21 ----
  if ('b' == $a) {
  
! ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
! <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
! <script type="text/javascript">
  <!--
  window.close()
***************
*** 28,32 ****
  
      $popuptitle = stripslashes($popuptitle);
!     $text = stripslashes($text);
      
      /* big funky fixes for browsers' javascript bugs */
--- 29,33 ----
  
      $popuptitle = stripslashes($popuptitle);
!     $text = stripslashes(urldecode($text));
      
      /* big funky fixes for browsers' javascript bugs */
***************
*** 71,79 ****
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
! <title>WordPress > Bookmarklet</title>
  <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
  <link rel="stylesheet" href="wp-admin.css" type="text/css" />
  <link rel="shortcut icon" href="../wp-images/wp-favicon.png" />
! <script type="text/javascript" language="javascript">
  <!--
  function launchupload() {
--- 72,80 ----
  <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
! <title><?php bloginfo('name') ?> &rsaquo; Bookmarklet &#8212; WordPress</title>
  <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
  <link rel="stylesheet" href="wp-admin.css" type="text/css" />
  <link rel="shortcut icon" href="../wp-images/wp-favicon.png" />
! <script type="text/javascript">
  <!--
  function launchupload() {
***************
*** 122,126 ****
  </head>
  <body id="wpbookmarklet">
! <h1 id="wphead"><a href="http://wordpress.org" rel="external">WordPress</a></h1>
  
  <?php require('edit-form.php'); ?>
--- 123,129 ----
  </head>
  <body id="wpbookmarklet">
! <div id="wphead">
! <h1><?php bloginfo('name') ?></h1>
! </div>
  
  <?php require('edit-form.php'); ?>




More information about the cvs mailing list