Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit afcce3f

Browse files
authored
Merge pull request #233 from edent/patch-1
2 parents 8f0daea + bc9821b commit afcce3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

semantic-linkbacks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public static function facepile_checkboxes() {
9393
$facepile = get_option( 'semantic_linkbacks_facepiles' );
9494
echo '<div id="facepile-all">';
9595
foreach ( $strings as $key => $value ) {
96-
printf( '<input name="semantic_linkbacks_facepiles[]" type="checkbox" value="%1$s" %2$s />%3$s<br />', $key, checked( in_array( $key, $facepile, true ), true, false ), $value );
96+
printf( '<input name="semantic_linkbacks_facepiles[]" type="checkbox" value="%1$s" id="%1$s" %2$s /><label for="%1$s">%3$s</label><br />', $key, checked( in_array( $key, $facepile, true ), true, false ), $value );
9797
}
9898
echo '</div>';
9999
}

0 commit comments

Comments
 (0)