Notice: Array to string conversion
-
Hi! How are you?
There’s a Notice when passing a array of arrays as
$args
to scheduled events.The plugin should consider it in the two blocks:
foreach ( $this->get_var( 'event' )->args as $arg ): ?> <span><?php echo esc_html( $arg ); ?></span> endforeach
I suggest check it’s a array:
foreach ( $this->get_var( 'event' )->args as $arg ): ?> <span><?php echo esc_html( is_array( $arg ) ? 'Array' : $arg ); ?></span> endforeach
Files:
advanced-cron-manager/views/parts/events/row.php
advanced-cron-manager/views/parts/events/tabs/arguments.php
Best regards,
Mário Valney
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Notice: Array to string conversion’ is closed to new replies.