Make WordPress Core

Changeset 6711


Ignore:
Timestamp:
02/02/2008 06:42:09 PM (19 years ago)
Author:
ryan
Message:

Some notice fixes from Nazgul. fixes #3155

Location:
trunk
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/default/comments.php

    r6343 r6711  
    11<?php // Do not delete these lines
    2         if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
     2        if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
    33                die ('Please do not load this page directly. Thanks!');
    44
  • trunk/wp-content/themes/default/header.php

    r6195 r6711  
    1515<?php
    1616// Checks to see whether it needs a sidebar or not
    17 if ( !$withcomments && !is_single() ) {
     17if ( !empty($withcomments) && !is_single() ) {
    1818?>
    1919        #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
  • trunk/wp-includes/cache.php

    r6543 r6711  
    354354
    355355                $this->cache[$group][$id] = $data;
    356                 unset ($this->non_existant_objects[$group][$id]);
     356
     357                if(isset($this->non_existant_objects[$group][$id]))
     358                        unset ($this->non_existant_objects[$group][$id]);
    357359
    358360                return true;
  • trunk/wp-includes/classes.php

    r6552 r6711  
    186186                } else {
    187187                        // We're showing a feed, so WP is indeed the only thing that last changed
    188                         if ( $this->query_vars['withcomments']
    189                                 || ( !$this->query_vars['withoutcomments']
    190                                         && ( $this->query_vars['p']
    191                                                 || $this->query_vars['name']
    192                                                 || $this->query_vars['page_id']
    193                                                 || $this->query_vars['pagename']
    194                                                 || $this->query_vars['attachment']
    195                                                 || $this->query_vars['attachment_id']
     188                        if ( !empty($this->query_vars['withcomments'])
     189                                || ( empty($this->query_vars['withoutcomments'])
     190                                        && ( !empty($this->query_vars['p'])
     191                                                || !empty($this->query_vars['name'])
     192                                                || !empty($this->query_vars['page_id'])
     193                                                || !empty($this->query_vars['pagename'])
     194                                                || !empty($this->query_vars['attachment'])
     195                                                || !empty($this->query_vars['attachment_id'])
    196196                                        )
    197197                                )
     
    209209                        else $client_etag = false;
    210210
    211                         $client_last_modified = trim( $_SERVER['HTTP_IF_MODIFIED_SINCE']);
     211                        $client_last_modified = empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? '' : trim($_SERVER['HTTP_IF_MODIFIED_SINCE']);
    212212                        // If string is empty, return 0. If not, attempt to parse into a timestamp
    213213                        $client_modified_timestamp = $client_last_modified ? strtotime($client_last_modified) : 0;
  • trunk/wp-includes/comment-template.php

    r6551 r6711  
    730730
    731731        if ( !empty($post->post_password) ) { // if there's a password
    732                 if ( $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password ) {  // and it doesn't match the cookie
     732                if ( !isset($_COOKIE['wp-postpass_' . COOKIEHASH]) || $_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password ) {  // and it doesn't match the cookie
    733733                        echo __('Enter your password to view comments');
    734734                        return;
  • trunk/wp-includes/feed.php

    r6517 r6711  
    146146function rss_enclosure() {
    147147        global $post;
    148         if ( !empty($post->post_password) && ($_COOKIE['wp-postpass_'.COOKIEHASH] != $post->post_password) )
     148        if ( !empty($post->post_password) && (!isset($_COOKIE['wp-postpass_'.COOKIEHASH]) || $_COOKIE['wp-postpass_'.COOKIEHASH] != $post->post_password) )
    149149                return;
    150150
  • trunk/wp-includes/link-template.php

    r6633 r6711  
    525525
    526526        $join = '';
     527        $posts_in_ex_cats_sql = '';
    527528        if ( $in_same_cat || !empty($excluded_categories) ) {
    528529                $join = " INNER JOIN $wpdb->term_relationships AS tr ON p.ID = tr.object_id INNER JOIN $wpdb->term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id";
     
    616617                preg_match( $qs_regex, $request, $qs_match );
    617618
    618                 if ( $qs_match[0] ) {
     619                if ( !empty( $qs_match[0] ) ) {
    619620                        $query_string = $qs_match[0];
    620621                        $request = preg_replace( $qs_regex, '', $request );
  • trunk/wp-includes/pluggable.php

    r6685 r6711  
    776776        $wpp = parse_url(get_option('home'));
    777777
    778         $allowed_hosts = (array) apply_filters('allowed_redirect_hosts', array($wpp['host']), $lp['host']);
     778        $allowed_hosts = (array) apply_filters('allowed_redirect_hosts', array($wpp['host']), isset($lp['host']) ? $lp['host'] : '');
    779779
    780780        if ( isset($lp['host']) && ( !in_array($lp['host'], $allowed_hosts) && $lp['host'] != strtolower($wpp['host'])) )
  • trunk/wp-includes/post-template.php

    r6698 r6711  
    8787
    8888        if ( !empty($post->post_password) ) { // if there's a password
    89                 if ( stripslashes($_COOKIE['wp-postpass_'.COOKIEHASH]) != $post->post_password ) {      // and it doesn't match the cookie
     89                if ( !isset($_COOKIE['wp-postpass_'.COOKIEHASH]) || stripslashes($_COOKIE['wp-postpass_'.COOKIEHASH]) != $post->post_password ) {       // and it doesn't match the cookie
    9090                        $output = get_the_password_form();
    9191                        return $output;
     
    142142        $output = $post->post_excerpt;
    143143        if ( !empty($post->post_password) ) { // if there's a password
    144                 if ( $_COOKIE['wp-postpass_'.COOKIEHASH] != $post->post_password ) {  // and it doesn't match the cookie
     144                if ( !isset($_COOKIE['wp-postpass_'.COOKIEHASH]) || $_COOKIE['wp-postpass_'.COOKIEHASH] != $post->post_password ) {  // and it doesn't match the cookie
    145145                        $output = __('There is no excerpt because this is a protected post.');
    146146                        return $output;
  • trunk/wp-includes/user.php

    r6644 r6711  
    217217        $userdata = $user->data;
    218218        $user_login     = $user->user_login;
    219         $user_level     = (int) $user->user_level;
     219        $user_level     = (int) isset($user->user_level) ? $user->user_level : 0;
    220220        $user_ID        = (int) $user->ID;
    221221        $user_email     = $user->user_email;
  • trunk/wp-includes/wp-db.php

    r6701 r6711  
    340340
    341341                // Extract var out of cached results based x,y vals
    342                 if ( $this->last_result[$y] ) {
     342                if ( !empty( $this->last_result[$y] ) ) {
    343343                        $values = array_values(get_object_vars($this->last_result[$y]));
    344344                }
  • trunk/wp-login.php

    r6664 r6711  
    175175//
    176176
    177 $action = $_REQUEST['action'];
     177$action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
    178178$errors = new WP_Error();
    179179
     
    352352
    353353        // Some parts of this script use the main login form to display a message
    354         if              ( TRUE == $_GET['loggedout'] )                  $errors->add('loggedout', __('You are now logged out.'));
    355         elseif  ( 'disabled' == $_GET['registration'] ) $errors->add('registerdiabled', __('User registration is currently not allowed.'));
    356         elseif  ( 'confirm' == $_GET['checkemail'] )    $errors->add('confirm', __('Check your e-mail for the confirmation link.'));
    357         elseif  ( 'newpass' == $_GET['checkemail'] )    $errors->add('newpass', __('Check your e-mail for your new password.'));
    358         elseif  ( 'registered' == $_GET['checkemail'] ) $errors->add('registered', __('Registration complete. Please check your e-mail.'));
     354        if              ( isset($_GET['loggedout']) && TRUE == $_GET['loggedout'] )                     $errors->add('loggedout', __('You are now logged out.'));
     355        elseif  ( isset($_GET['registration']) && 'disabled' == $_GET['registration'] ) $errors->add('registerdiabled', __('User registration is currently not allowed.'));
     356        elseif  ( isset($_GET['checkemail']) && 'confirm' == $_GET['checkemail'] )      $errors->add('confirm', __('Check your e-mail for the confirmation link.'));
     357        elseif  ( isset($_GET['checkemail']) && 'newpass' == $_GET['checkemail'] )      $errors->add('newpass', __('Check your e-mail for your new password.'));
     358        elseif  ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] )   $errors->add('registered', __('Registration complete. Please check your e-mail.'));
    359359
    360360        login_header(__('Login'), '', $errors);
     
    362362
    363363<form name="loginform" id="loginform" action="wp-login.php" method="post">
    364 <?php if ( !in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?>
     364<?php if ( !isset($_GET['checkemail']) || !in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?>
    365365        <p>
    366366                <label><?php _e('Username') ?><br />
     
    385385
    386386<p id="nav">
    387 <?php if ( in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?>
     387<?php if ( isset($_GET['checkemail']) && in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?>
    388388<?php elseif (get_option('users_can_register')) : ?>
    389389<a href="<?php bloginfo('wpurl'); ?>/wp-login.php?action=register"><?php _e('Register') ?></a> |
Note: See TracChangeset for help on using the changeset viewer.