home/quizenacom/public_html/wp-admin/includes/options.php000064400000010041152377531350017706 0ustar00 '; echo '

' . __( 'The character encoding of your site (UTF-8 is recommended)' ) . '

'; } home/quizenacom/public_html/wp-admin/options.php000064400000031234152377700330016103 0ustar00' . __( '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