Make WordPress Core

Changeset 16774


Ignore:
Timestamp:
12/07/2010 08:41:43 PM (14 years ago)
Author:
nacin
Message:

Fix a sprintf call. props wojtek.szkutnik, sorich87. fixes #14555.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network/edit.php

    r16772 r16774  
    101101
    102102        if ( empty( $_POST ) )
    103             wp_die( sprintf( __( 'You probably need to go back to the <a href="%s">options page</a>.', esc_url( admin_url( 'settings.php' ) ) ) ) );
     103            wp_die( sprintf( __( 'You probably need to go back to the <a href="%s">options page</a>.' ), esc_url( admin_url( 'settings.php' ) ) ) );
    104104
    105105        if ( isset($_POST['WPLANG']) && ( '' === $_POST['WPLANG'] || in_array( $_POST['WPLANG'], get_available_languages() ) ) )
     
    179179            wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => 'not_deleted' ), wp_get_referer() ) );
    180180        }
    181        
     181
    182182        exit();
    183183    break;
Note: See TracChangeset for help on using the changeset viewer.