mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-18 22:23:37 +09:00
- fixed variable type for UM()->form()->processing and UM()->fields()->set_id;
This commit is contained in:
@@ -710,7 +710,7 @@ if ( ! class_exists( 'um\core\Form' ) ) {
|
||||
public function beautify( $form ) {
|
||||
if ( isset( $form['form_id'] ) ) {
|
||||
$this->form_suffix = '-' . $form['form_id'];
|
||||
$this->processing = $form['form_id'];
|
||||
$this->processing = absint( $form['form_id'] );
|
||||
|
||||
foreach ( $form as $key => $value ) {
|
||||
if ( strstr( $key, $this->form_suffix ) ) {
|
||||
|
||||
Reference in New Issue
Block a user