Skip to content

Commit ca6bd2b

Browse files
authored
Update class-cpt-wplf-submission.php
When viewing submissions, the 'All forms' filter dropdown was empty. Adding an 'echo' fixed that.
1 parent 7726a4b commit ca6bd2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

classes/class-cpt-wplf-submission.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ function form_filter_dropdown() {
143143
<option
144144
value="<?php echo intval( $form->ID ); ?>"
145145
<?php echo isset( $_REQUEST['form'] ) && intval( $_REQUEST['form'] ) === $form->ID ? 'selected' : ''; ?>
146-
><?php esc_html( $form->post_title ); ?></option>
146+
><?php echo esc_html( $form->post_title ); ?></option>
147147
<?php endforeach; ?>
148148
</select>
149149
<?php

0 commit comments

Comments
 (0)