Changeset 39763
- Timestamp:
- 01/11/2017 01:43:50 AM (8 years ago)
- Location:
- branches/4.5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.5
-
branches/4.5/src/wp-admin/includes/class-wp-screen.php
r36874 r39763 918 918 switch ( $this->base ) { 919 919 case 'widgets': 920 $this->_screen_settings = '<p><a id="access-on" href="widgets.php?widgets-access=on">' . __('Enable accessibility mode') . '</a><a id="access-off" href="widgets.php?widgets-access=off">' . __('Disable accessibility mode') . "</a></p>\n"; 920 $nonce = wp_create_nonce( 'widgets-access' ); 921 $this->_screen_settings = '<p><a id="access-on" href="widgets.php?widgets-access=on&_wpnonce=' . urlencode( $nonce ) . '">' . __('Enable accessibility mode') . '</a><a id="access-off" href="widgets.php?widgets-access=off&_wpnonce=' . urlencode( $nonce ) . '">' . __('Disable accessibility mode') . "</a></p>\n"; 921 922 break; 922 923 case 'post' : -
branches/4.5/src/wp-admin/widgets.php
r36422 r39763 23 23 $widgets_access = get_user_setting( 'widgets_access' ); 24 24 if ( isset($_GET['widgets-access']) ) { 25 check_admin_referer( 'widgets-access' ); 26 25 27 $widgets_access = 'on' == $_GET['widgets-access'] ? 'on' : 'off'; 26 28 set_user_setting( 'widgets_access', $widgets_access );
Note: See TracChangeset
for help on using the changeset viewer.