mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
Fix security vulnerabilities, enhance validation, and update logic
Addressed several security issues including CVE-2025-15064 and CVE-2026-1404. Added server-side validation for forms and introduced hooks for email confirmation. Adjusted template handling, resolved mobile display issues, and updated Site Health debug information.
This commit is contained in:
@@ -2220,7 +2220,7 @@ class Site_Health {
|
||||
$debug_info[] = array(
|
||||
'template' => array(
|
||||
'label' => __( 'Template', 'ultimate-member' ),
|
||||
'value' => 0 === absint( get_post_meta( $form_id, '_um_login_template', true ) ) ? $labels['default'] : get_post_meta( $form_id, '_um_login_template', true ),
|
||||
'value' => empty( get_post_meta( $form_id, '_um_login_template', true ) ) ? $labels['default'] : get_post_meta( $form_id, '_um_login_template', true ),
|
||||
),
|
||||
'max_width' => array(
|
||||
'label' => __( 'Max. Width (px)', 'ultimate-member' ),
|
||||
@@ -2292,7 +2292,7 @@ class Site_Health {
|
||||
),
|
||||
'template' => array(
|
||||
'label' => __( 'Template', 'ultimate-member' ),
|
||||
'value' => 0 === absint( get_post_meta( $form_id, '_um_profile_template', true ) ) ? $labels['default'] : get_post_meta( $form_id, '_um_profile_template', true ),
|
||||
'value' => empty( get_post_meta( $form_id, '_um_profile_template', true ) ) ? $labels['default'] : get_post_meta( $form_id, '_um_profile_template', true ),
|
||||
),
|
||||
'max_width' => array(
|
||||
'label' => __( 'Max. Width (px)', 'ultimate-member' ),
|
||||
|
||||
Reference in New Issue
Block a user