From f94fdae019476e8fcac488e73b24b2938d038a29 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Thu, 29 Jan 2004 06:49:19 +0000 Subject: [PATCH] Remove remnants of $c. git-svn-id: https://develop.svn.wordpress.org/trunk@808 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit.php | 2 +- wp-admin/post.php | 4 ++-- wp-blog-header.php | 3 +-- wp-comments.php | 2 +- wp-includes/template-functions-post.php | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 832fba4c4c..925b46486c 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -282,7 +282,7 @@ foreach ($posts as $post) { start_wp(); get_results("SELECT * FROM $tablecomments WHERE comment_post_ID = $id ORDER BY comment_date"); if ($comments) { diff --git a/wp-admin/post.php b/wp-admin/post.php index 7f05b48668..d69542a6e9 100644 --- a/wp-admin/post.php +++ b/wp-admin/post.php @@ -18,7 +18,7 @@ if (!get_magic_quotes_gpc()) { $HTTP_COOKIE_VARS = add_magic_quotes($HTTP_COOKIE_VARS); } -$wpvarstoreset = array('action', 'safe_mode', 'withcomments', 'c', 'posts', 'poststart', 'postend', 'content', 'edited_post_title', 'comment_error', 'profile', 'trackback_url', 'excerpt', 'showcomments', 'commentstart', 'commentend', 'commentorder'); +$wpvarstoreset = array('action', 'safe_mode', 'withcomments', 'posts', 'poststart', 'postend', 'content', 'edited_post_title', 'comment_error', 'profile', 'trackback_url', 'excerpt', 'showcomments', 'commentstart', 'commentend', 'commentorder'); for ($i=0; $i 0) { - if ((!$withcomments) && (!$c)) { + if ((!$withcomments) && (!$single)) { $action = 'post'; get_currentuserinfo(); diff --git a/wp-blog-header.php b/wp-blog-header.php index c555cb19e9..a79ce2ad47 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -10,7 +10,7 @@ if (!file_exists($curpath . '/wp-config.php')) require($curpath.'/wp-config.php'); -$wpvarstoreset = array('m','p','posts','w','c', 'cat','withcomments','s','search','exact', 'sentence','poststart','postend','preview','debug', 'calendar','page','paged','more','tb', 'pb','author','order','orderby', 'year', 'monthnum', 'day', 'name', 'category_name'); +$wpvarstoreset = array('m','p','posts','w', 'cat','withcomments','s','search','exact', 'sentence','poststart','postend','preview','debug', 'calendar','page','paged','more','tb', 'pb','author','order','orderby', 'year', 'monthnum', 'day', 'name', 'category_name'); for ($i=0; $ipost_password)) { // if there's a password if ($HTTP_COOKIE_VARS['wp-postpass_'.$cookiehash] != $post->post_password) { // and it doesn't match the cookie diff --git a/wp-includes/template-functions-post.php b/wp-includes/template-functions-post.php index 7ae7be40dc..3d16fdf4ff 100644 --- a/wp-includes/template-functions-post.php +++ b/wp-includes/template-functions-post.php @@ -108,7 +108,7 @@ function the_content_unicode($more_link_text='(more...)', $stripteaser=0, $more_ } function get_the_content($more_link_text='(more...)', $stripteaser=0, $more_file='') { - global $id, $post, $more, $c, $withcomments, $page, $pages, $multipage, $numpages; + global $id, $post, $more, $single, $withcomments, $page, $pages, $multipage, $numpages; global $HTTP_SERVER_VARS, $HTTP_COOKIE_VARS, $preview, $cookiehash; global $querystring_start, $querystring_equal, $querystring_separator; global $pagenow;