Make WordPress Core

Ticket #44131: 44131.2.diff

File 44131.2.diff, 978 bytes (added by desrosj, 6 years ago)

Switch conditions and check for publish instead of draft.

  • src/wp-admin/privacy.php

     
    136136                <p class="tools-privacy-edit"><strong>
    137137                        <?php
    138138
    139                         /* translators: 1: URL to edit page, 2: URL to view page */
    140                         printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ), $edit_href, $view_href );
     139                        if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) {
     140                                /* translators: 1: URL to edit page, 2: URL to view page */
     141                                printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ), $edit_href, $view_href );
     142                        } else {
     143                                /* translators: 1: URL to edit page, 2: URL to preview page */
     144                                printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">preview</a> your privacy policy page content.' ), $edit_href, $view_href );
     145                        }
    141146
    142147                        ?>
    143148                </strong></p>