mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-11 18:56:10 +09:00
Fixed issue with class name in checkbox and radio
Issue: class name being 'activeright' instead of 'active right' . Fix: fixed by adding space around the class name ' right '.
This commit is contained in:
@@ -3576,7 +3576,7 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
|
||||
|
||||
$i++;
|
||||
if ($i % 2 == 0) {
|
||||
$col_class = 'right';
|
||||
$col_class = ' right ';
|
||||
} else {
|
||||
$col_class = '';
|
||||
}
|
||||
@@ -3703,7 +3703,7 @@ if ( ! class_exists( 'um\core\Fields' ) ) {
|
||||
|
||||
$i++;
|
||||
if ( $i % 2 == 0 ) {
|
||||
$col_class = 'right';
|
||||
$col_class = ' right ';
|
||||
} else {
|
||||
$col_class = '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user