Removed references to b2edit.php

git-svn-id: http://svn.automattic.com/wordpress/trunk@514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
mikelittle 2003-11-03 22:11:42 +00:00
parent 1b58b52e10
commit 603f2e440c
10 changed files with 27 additions and 27 deletions

View File

@ -364,7 +364,7 @@ function get_lastpostdate() {
global $tableposts, $cache_lastpostdate, $use_cache, $time_difference, $pagenow, $wpdb, $querycount; global $tableposts, $cache_lastpostdate, $use_cache, $time_difference, $pagenow, $wpdb, $querycount;
if ((!isset($cache_lastpostdate)) OR (!$use_cache)) { if ((!isset($cache_lastpostdate)) OR (!$use_cache)) {
$now = date("Y-m-d H:i:s",(time() + ($time_difference * 3600))); $now = date("Y-m-d H:i:s",(time() + ($time_difference * 3600)));
if ($pagenow != 'b2edit.php') { if ($pagenow != 'wp-post.php') {
$showcatzero = 'post_category > 0 AND'; $showcatzero = 'post_category > 0 AND';
} else { } else {
$showcatzero = ''; $showcatzero = '';

View File

@ -144,7 +144,7 @@ $pagenow = explode('/', $PHP_SELF);
$pagenow = trim($pagenow[(sizeof($pagenow)-1)]); $pagenow = trim($pagenow[(sizeof($pagenow)-1)]);
$pagenow = explode('?', $pagenow); $pagenow = explode('?', $pagenow);
$pagenow = $pagenow[0]; $pagenow = $pagenow[0];
if (($querystring_start == '/') && ($pagenow != 'b2edit.php')) { if (($querystring_start == '/') && ($pagenow != 'wp-post.php')) {
$pagenow = $siteurl.'/'.$blogfilename; $pagenow = $siteurl.'/'.$blogfilename;
} }

View File

@ -59,7 +59,7 @@ $where = '';
$limits = ''; $limits = '';
$distinct = ''; $distinct = '';
if ($pagenow != 'b2edit.php') { timer_start(); } if ($pagenow != 'wp-post.php') { timer_start(); }
if ($showposts) { if ($showposts) {
$showposts = (int)$showposts; $showposts = (int)$showposts;
@ -245,7 +245,7 @@ if ( !empty($postend) && ($postend > $poststart) && (!$m) && empty($monthnum) &&
} }
} else { } else {
if (($what_to_show == 'paged') && (!$p) && (!$more)) { if (($what_to_show == 'paged') && (!$p) && (!$more)) {
if ($pagenow != 'b2edit.php') { if ($pagenow != 'wp-post.php') {
$pgstrt = ''; $pgstrt = '';
if ($paged) { if ($paged) {
$pgstrt = (intval($paged) -1) * $posts_per_page . ', '; $pgstrt = (intval($paged) -1) * $posts_per_page . ', ';
@ -274,7 +274,7 @@ if ($p == 'all') {
$now = date('Y-m-d H:i:s',(time() + ($time_difference * 3600))); $now = date('Y-m-d H:i:s',(time() + ($time_difference * 3600)));
if ($pagenow != 'b2edit.php') { if ($pagenow != 'wp-post.php') {
if ((empty($poststart)) || (empty($postend)) || !($postend > $poststart)) { if ((empty($poststart)) || (empty($postend)) || !($postend > $poststart)) {
$where .= ' AND post_date <= \''.$now.'\''; $where .= ' AND post_date <= \''.$now.'\'';
} }

View File

@ -75,7 +75,7 @@ textarea {
</style> </style>
</head> </head>
<body> <body>
<form name="post" action="b2edit.php" method="POST"> <form name="post" action="wp-post.php" method="POST">
<input type="hidden" name="action" value="post" /> <input type="hidden" name="action" value="post" />
<input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" /> <input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" />
<input type="hidden" name="mode" value="bookmarklet" /> <input type="hidden" name="mode" value="bookmarklet" />

View File

@ -75,7 +75,7 @@ textarea,input,select {
</style> </style>
</head> </head>
<body> <body>
<form name="post" action="b2edit.php" method="POST" accept-charset="iso-8859-1"> <form name="post" action="wp-post.php" method="POST" accept-charset="iso-8859-1">
<input type="hidden" name="action" value="post" /> <input type="hidden" name="action" value="post" />
<input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" /> <input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" />
<input type="hidden" name="mode" value="sidebar" /> <input type="hidden" name="mode" value="sidebar" />

View File

@ -148,10 +148,10 @@ echo $comments_nav_bar;
<?php comment_text() ?> <?php comment_text() ?>
<p>Posted <?php comment_date('M j, g:i A') ?> | <?php <p>Posted <?php comment_date('M j, g:i A') ?> | <?php
if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) { if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) {
echo "<a href=\"b2edit.php?action=editcomment&amp;comment=".$comment->comment_ID."\">Edit</a>"; echo "<a href=\"wp-post.php?action=editcomment&amp;comment=".$comment->comment_ID."\">Edit</a>";
echo " | <a href=\"b2edit.php?action=deletecomment&amp;p=".$comment->comment_post_ID."&amp;comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> | "; echo " | <a href=\"wp-post.php?action=deletecomment&amp;p=".$comment->comment_post_ID."&amp;comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> | ";
} // end if any comments to show } // end if any comments to show
?> <a href="b2edit.php?p=<?php echo $comment->comment_post_ID; ?>">View Post</a></p> ?> <a href="wp-post.php?p=<?php echo $comment->comment_post_ID; ?>">View Post</a></p>
</li> </li>

View File

@ -221,7 +221,7 @@ if ($user_level > 4) {
touch_time(($action == 'edit')); touch_time(($action == 'edit'));
} }
if ('edit' == $action) echo " if ('edit' == $action) echo "
<p><a href='b2edit.php?action=delete&amp;post=$post' onclick=\"return confirm('You are about to delete this post \'".$edited_post_title."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete this post</a></p>"; <p><a href='wp-post.php?action=delete&amp;post=$post' onclick=\"return confirm('You are about to delete this post \'".$edited_post_title."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete this post</a></p>";
?> ?>
</form> </form>

View File

@ -39,7 +39,7 @@ ob_start();
<h2 id="comments">Comments</h2> <h2 id="comments">Comments</h2>
<p class="anchors">Go to: <a href="b2edit.php#top">Post/Edit</a> | <a href="b2edit.php#posts">Posts</a> | <a href="b2edit.php#comments">Comments</a></p> <p class="anchors">Go to: <a href="wp-post.php#top">Post/Edit</a> | <a href="wp-post.php#posts">Posts</a> | <a href="wp-post.php#comments">Comments</a></p>
<div class="wrap"> <div class="wrap">
<table width="100%"> <table width="100%">
@ -149,11 +149,11 @@ echo $comments_nav_bar;
[ [
<?php <?php
if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) { if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) {
echo "<a href=\"b2edit.php?action=editcomment&amp;comment=".$comment->comment_ID."\">Edit</a>"; echo "<a href=\"wp-post.php?action=editcomment&amp;comment=".$comment->comment_ID."\">Edit</a>";
echo " - <a href=\"b2edit.php?action=deletecomment&amp;p=".$comment->comment_post_ID."&amp;comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> - "; echo " - <a href=\"wp-post.php?action=deletecomment&amp;p=".$comment->comment_post_ID."&amp;comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> - ";
} // end if any comments to show } // end if any comments to show
?> ?>
<a href="b2edit.php?p=<?php echo $comment->comment_post_ID; ?>&c=1">View Post</a> ] <a href="wp-post.php?p=<?php echo $comment->comment_post_ID; ?>&c=1">View Post</a> ]
<br /> <br />
<strong><?php comment_author() ?> ( <?php comment_author_email_link() ?> / <?php comment_author_url_link() ?> )</strong> (IP: <?php comment_author_IP() ?>) <strong><?php comment_author() ?> ( <?php comment_author_email_link() ?> / <?php comment_author_url_link() ?> )</strong> (IP: <?php comment_author_IP() ?>)
<?php comment_text() ?> <?php comment_text() ?>

View File

@ -39,7 +39,7 @@ ob_start();
<h2 id="posts">Posts</h2> <h2 id="posts">Posts</h2>
<p class="anchors">Go to: <a href="b2edit.php#top">Post/Edit</a> | <a href="b2edit.php#posts">Posts</a> | <a href="b2edit.php#comments">Comments</a></p> <p class="anchors">Go to: <a href="wp-post.php#top">Post/Edit</a> | <a href="wp-post.php#posts">Posts</a> | <a href="wp-post.php#comments">Comments</a></p>
<div class="wrap"> <div class="wrap">
<table width="100%"> <table width="100%">
@ -133,14 +133,14 @@ echo $posts_nav_bar;
<table width="100%"> <table width="100%">
<tr> <tr>
<td valign="top" width="33%"> <td valign="top" width="33%">
<form name="searchform" action="b2edit.php" method="get"> <form name="searchform" action="wp-post.php" method="get">
<input type="hidden" name="a" value="s" /> <input type="hidden" name="a" value="s" />
<input onfocus="this.value='';" onblur="if (this.value=='') {this.value='search...';}" type="text" name="s" value="search..." size="7" style="width: 100px;" /> <input onfocus="this.value='';" onblur="if (this.value=='') {this.value='search...';}" type="text" name="s" value="search..." size="7" style="width: 100px;" />
<input type="submit" name="submit" value="search" class="search" /> <input type="submit" name="submit" value="search" class="search" />
</form> </form>
</td> </td>
<td valign="top" width="33%" align="center"> <td valign="top" width="33%" align="center">
<form name="viewcat" action="b2edit.php" method="get"> <form name="viewcat" action="wp-post.php" method="get">
<select name="cat" style="width:140px;"> <select name="cat" style="width:140px;">
<option value="all">All Categories</option> <option value="all">All Categories</option>
<?php <?php
@ -159,7 +159,7 @@ echo $posts_nav_bar;
</form> </form>
</td> </td>
<td valign="top" width="33%" align="right"> <td valign="top" width="33%" align="right">
<form name="viewarc" action="b2edit.php" method="get"> <form name="viewarc" action="wp-post.php" method="get">
<?php <?php
if ($archive_mode == "monthly") { if ($archive_mode == "monthly") {
@ -246,14 +246,14 @@ echo $posts_nav_bar;
//$posts_per_page = 10; //$posts_per_page = 10;
start_b2(); ?> start_b2(); ?>
<p> <p>
<strong><?php the_time('Y/m/d @ H:i:s'); ?></strong> [ <a href="b2edit.php?p=<?php echo $id ?>&c=1"><?php comments_number('no comments', '1 comment', "% comments") ?></a> <strong><?php the_time('Y/m/d @ H:i:s'); ?></strong> [ <a href="wp-post.php?p=<?php echo $id ?>&c=1"><?php comments_number('no comments', '1 comment', "% comments") ?></a>
<?php <?php
if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) { if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) {
echo " - <a href='b2edit.php?action=edit&amp;post=$id"; echo " - <a href='wp-post.php?action=edit&amp;post=$id";
if ($m) if ($m)
echo "&m=$m"; echo "&m=$m";
echo "'>Edit</a>"; echo "'>Edit</a>";
echo " - <a href='b2edit.php?action=delete&amp;post=$id' onclick=\"return confirm('You are about to delete this post \'".the_title('','',0)."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> "; echo " - <a href='wp-post.php?action=delete&amp;post=$id' onclick=\"return confirm('You are about to delete this post \'".the_title('','',0)."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> ";
} }
if ('private' == $post->post_status) echo ' - <strong>Private</strong>'; if ('private' == $post->post_status) echo ' - <strong>Private</strong>';
?> ?>
@ -285,8 +285,8 @@ echo $posts_nav_bar;
<?php comment_date('Y/m/d') ?> @ <?php comment_time() ?> <?php comment_date('Y/m/d') ?> @ <?php comment_time() ?>
<?php <?php
if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) { if (($user_level > $authordata->user_level) or ($user_login == $authordata->user_login)) {
echo "[ <a href=\"b2edit.php?action=editcomment&amp;comment=".$comment->comment_ID."\">Edit</a>"; echo "[ <a href=\"wp-post.php?action=editcomment&amp;comment=".$comment->comment_ID."\">Edit</a>";
echo " - <a href=\"b2edit.php?action=deletecomment&amp;p=".$post->ID."&amp;comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> ]"; echo " - <a href=\"wp-post.php?action=deletecomment&amp;p=".$post->ID."&amp;comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete</a> ]";
} // end if any comments to show } // end if any comments to show
?> ?>
<br /> <br />

View File

@ -291,7 +291,7 @@ switch($action) {
die ('Cheatin&#8217; uh?'); die ('Cheatin&#8217; uh?');
$post = $HTTP_GET_VARS['post']; $post = $HTTP_GET_VARS['post'];
$postdata = get_postdata($post) or die('Oops, no post with this ID. <a href="b2edit.php">Go back</a>!'); $postdata = get_postdata($post) or die('Oops, no post with this ID. <a href="wp-post.php">Go back</a>!');
$authordata = get_userdata($postdata['Author_ID']); $authordata = get_userdata($postdata['Author_ID']);
if ($user_level < $authordata->user_level) if ($user_level < $authordata->user_level)
@ -352,7 +352,7 @@ switch($action) {
$comment = $HTTP_GET_VARS['comment']; $comment = $HTTP_GET_VARS['comment'];
$p = $HTTP_GET_VARS['p']; $p = $HTTP_GET_VARS['p'];
$commentdata = get_commentdata($comment) or die('Oops, no comment with this ID. <a href="b2edit.php">Go back</a>!'); $commentdata = get_commentdata($comment) or die('Oops, no comment with this ID. <a href="wp-post.php">Go back</a>!');
$result = $wpdb->query("DELETE FROM $tablecomments WHERE comment_ID=$comment"); $result = $wpdb->query("DELETE FROM $tablecomments WHERE comment_ID=$comment");
@ -433,7 +433,7 @@ switch($action) {
$draft->post_title = stripslashes($draft->post_title); $draft->post_title = stripslashes($draft->post_title);
if ($draft->post_title == '') if ($draft->post_title == '')
$draft->post_title = 'post-'.$draft->ID; $draft->post_title = 'post-'.$draft->ID;
echo "<a href='b2edit.php?action=edit&amp;post=$draft->ID' title='Edit this draft'>$draft->post_title</a>"; echo "<a href='wp-post.php?action=edit&amp;post=$draft->ID' title='Edit this draft'>$draft->post_title</a>";
++$i; ++$i;
} }
?>.</p> ?>.</p>