Ticket #7082: 7082.patch
File 7082.patch, 2.0 KB (added by , 8 years ago) |
---|
-
src/bp-core/admin/css/common-rtl.css
374 374 375 375 body.post-type-bp-email td.column-situation ul { 376 376 margin: 0; 377 } 378 No newline at end of file 377 } 378 379 body.post-type-bp-email .categorydiv label { 380 display: block; 381 float: right; 382 padding-right: 25px; 383 text-indent: -25px; 384 } -
src/bp-core/admin/css/common.css
374 374 375 375 body.post-type-bp-email td.column-situation ul { 376 376 margin: 0; 377 } 378 No newline at end of file 377 } 378 379 body.post-type-bp-email .categorydiv label { 380 display: block; 381 float: left; 382 padding-left: 25px; 383 text-indent: -25px; 384 } -
src/bp-core/classes/class-bp-walker-category-checklist.php
84 84 } else { 85 85 /** This filter is documented in wp-includes/category-template.php */ 86 86 $output .= "\n<li id='{$taxonomy}-{$category->term_id}'$class>" . 87 '<label class="selectit"><input value="' . $category->slug . '" type="checkbox" name="'.$name.'[]" id="in-'.$taxonomy.'-' . $category->term_id . '"' .87 '<label for="in-'.$taxonomy.'-' . $category->term_id . '" class="selectit"><input value="' . $category->slug . '" type="checkbox" name="'.$name.'[]" id="in-'.$taxonomy.'-' . $category->term_id . '"' . 88 88 checked( in_array( $category->term_id, $args['selected_cats'] ), true, false ) . 89 89 disabled( empty( $args['disabled'] ), false, false ) . ' /> ' . 90 90 esc_html( apply_filters( 'the_category', $category->description ) ) . '</label>';