home/quizenacom/public_html/wp-admin/includes/options.php 0000644 00000010041 15237753135 0017706 0 ustar 00 '; echo '
' . __( 'The character encoding of your site (UTF-8 is recommended)' ) . '
'; } home/quizenacom/public_html/wp-admin/options.php 0000644 00000031234 15237770033 0016103 0 ustar 00 ' . __( 'You need a higher level of permission.' ) . '' . '' . __( 'Sorry, you are not allowed to manage options for this site.' ) . '
', 403 ); } // Handle admin email change requests. if ( ! empty( $_GET['adminhash'] ) ) { $new_admin_details = get_option( 'adminhash' ); $redirect = 'options-general.php?updated=false'; if ( is_array( $new_admin_details ) && hash_equals( $new_admin_details['hash'], $_GET['adminhash'] ) && ! empty( $new_admin_details['newemail'] ) ) { update_option( 'admin_email', $new_admin_details['newemail'] ); delete_option( 'adminhash' ); delete_option( 'new_admin_email' ); $redirect = 'options-general.php?updated=true'; } wp_redirect( admin_url( $redirect ) ); exit; } elseif ( ! empty( $_GET['dismiss'] ) && 'new_admin_email' === $_GET['dismiss'] ) { check_admin_referer( 'dismiss-' . get_current_blog_id() . '-new_admin_email' ); delete_option( 'adminhash' ); delete_option( 'new_admin_email' ); wp_redirect( adm