Bug w/Solution Unclosed
-
I have found a bug that troubled me, its solution was easy enough. I didn’t cause this bug so I imagine others have it!
Line 517, wpuf-functions.php
The following is the list created when outputting the responses to custom fields. The
- tag wasn’t closed by default. I the last line of code I have inserted ‘/’ to close it. I suggest others do the same as otherwise all of the commenting is pushed into the list.
$extra .= '<ul class="wpuf_customs">'; foreach ($fields as $field) { $meta = get_post_meta( $post->ID, $field->field, true ); if ( $meta ) { $extra .= sprintf( '<li><label>%s</label> : %s</li>', $field->label, make_clickable( $meta ) ); } } $extra .= '</ul>';
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Bug w/Solution Unclosed’ is closed to new replies.