Make WordPress Core

Changeset 5242


Ignore:
Timestamp:
04/11/2007 04:52:58 PM (18 years ago)
Author:
rob1n
Message:

Don't use fancy permalinks on draft previews. Props Viper007Bond. fixes #4117

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post-template.php

    r5241 r5242  
    132132
    133133function wp_link_pages($args = '') {
     134    global $post;
     135
    134136    if ( is_array($args) )
    135137        $r = &$args;
     
    159161                        $output .= '<a href="' . get_permalink() . '">';
    160162                    } else {
    161                         if ( '' == get_option('permalink_structure') )
     163                        if ( '' == get_option('permalink_structure') || 'draft' == $post->post_status )
    162164                            $output .= '<a href="' . get_permalink() . '&amp;page=' . $i . '">';
    163165                        else
     
    178180                        $output .= '<a href="' . get_permalink() . '">' . $previouspagelink . '</a>';
    179181                    } else {
    180                         if ( '' == get_option('permalink_structure') )
     182                        if ( '' == get_option('permalink_structure') || 'draft' == $post->post_status )
    181183                            $output .= '<a href="' . get_permalink() . '&amp;page=' . $i . '">' . $previouspagelink . '</a>';
    182184                        else
     
    189191                        $output .= '<a href="' . get_permalink() . '">' . $nextpagelink . '</a>';
    190192                    } else {
    191                         if ( '' == get_option('permalink_structure') )
     193                        if ( '' == get_option('permalink_structure') || 'draft' == $post->post_status )
    192194                            $output .= '<a href="' . get_permalink() . '&amp;page=' . $i . '">' . $nextpagelink . '</a>';
    193195                        else
Note: See TracChangeset for help on using the changeset viewer.