Make WordPress Core

Ticket #43926: 43926.2.diff

File 43926.2.diff, 1.3 KB (added by xkon, 7 years ago)

redirect after create page

  • src/wp-admin/privacy.php

     
    6161                } else {
    6262                        update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id );
    6363
    64                         add_settings_error(
    65                                 'page_for_privacy_policy',
    66                                 'page_for_privacy_policy',
    67                                 sprintf(
    68                                         /* translators: %s: URL to edit Privacy Policy page */
    69                                         __( 'Your privacy policy page created successfully. You&#8217;ll want to <a href="%s">review and edit your policy</a> next.' ),
    70                                         'post.php?post=' . $privacy_policy_page_id . '&action=edit'
    71                                 ),
    72                                 'updated'
    73                         );
     64                        wp_redirect( 'post.php?post=' . $privacy_policy_page_id . '&action=edit' );
     65                        exit;
    7466                }
    7567        }
    7668}
     
    197189                                        submit_button( __( 'Use This Page' ), 'primary', 'submit', false, array( 'id' => 'set-page' ) );
    198190                                        ?>
    199191                                </form>
    200 
    201192                                <form method="post" action="">
    202193                                        <input type="hidden" name="action" value="create-privacy-page" />
    203194                                        <span>
    204                                                 <?php _e( 'Or create a new page:' ); ?> 
     195                                                <?php _e( 'Or create a new page:' ); ?>
    205196                                        </span>
    206197                                        <?php
    207198                                        wp_nonce_field( 'create-privacy-page' );
    208        
     199
    209200                                        submit_button( __( 'Create New Page' ), 'primary', 'submit', false, array( 'id' => 'create-page' ) );
    210201                                        ?>
    211202                                </form>