diff options
| author | David Drury <david@drury.me.uk> | 2014-04-29 19:17:22 +0100 |
|---|---|---|
| committer | David Drury <david@drury.me.uk> | 2014-04-29 19:17:22 +0100 |
| commit | 1dcc2fbebd9ed7e31678e76516f2d5c3d9203c7a (patch) | |
| tree | 9581d5f32093a29b78f6b08c1cb71cbb2f0b9418 | |
| parent | 5b8fc637b07147eb9e2a01fd1a5b812f471518c7 (diff) | |
| download | webtrees-1dcc2fbebd9ed7e31678e76516f2d5c3d9203c7a.tar.gz webtrees-1dcc2fbebd9ed7e31678e76516f2d5c3d9203c7a.tar.bz2 webtrees-1dcc2fbebd9ed7e31678e76516f2d5c3d9203c7a.zip | |
Consolidate css classes
| -rw-r--r-- | modules_v3/clippings/module.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules_v3/clippings/module.php b/modules_v3/clippings/module.php index 8a1f47152b..63d69c023a 100644 --- a/modules_v3/clippings/module.php +++ b/modules_v3/clippings/module.php @@ -192,7 +192,7 @@ class clippings_WT_Module extends WT_Module implements WT_Module_Menu, WT_Module <?php if (WT_USER_GEDCOM_ADMIN) { ?> <tr><td class="descriptionbox width50 wrap"><?php echo WT_I18N::translate('Apply privacy settings?'), help_link('apply_privacy'); ?></td> - <td class="list_value"> + <td class="optionbox"> <input type="radio" name="privatize_export" value="none" checked="checked"> <?php echo WT_I18N::translate('None'); ?><br> <input type="radio" name="privatize_export" value="gedadmin"> <?php echo WT_I18N::translate('Manager'); ?><br> <input type="radio" name="privatize_export" value="user"> <?php echo WT_I18N::translate('Member'); ?><br> @@ -200,7 +200,7 @@ class clippings_WT_Module extends WT_Module implements WT_Module_Menu, WT_Module </td></tr> <?php } elseif (WT_USER_CAN_ACCESS) { ?> <tr><td class="descriptionbox width50 wrap"><?php echo WT_I18N::translate('Apply privacy settings?'), help_link('apply_privacy'); ?></td> - <td class="list_value"> + <td class="optionbox"> <input type="radio" name="privatize_export" value="user" checked="checked"> <?php echo WT_I18N::translate('Member'); ?><br> <input type="radio" name="privatize_export" value="visitor"> <?php echo WT_I18N::translate('Visitor'); ?> </td></tr> @@ -210,7 +210,7 @@ class clippings_WT_Module extends WT_Module implements WT_Module_Menu, WT_Module <td class="optionbox"><input type="checkbox" name="convert" value="yes"></td></tr> <tr><td class="descriptionbox width50 wrap"><?php echo WT_I18N::translate('Add the GEDCOM media path to filenames'), help_link('GEDCOM_MEDIA_PATH'); ?></td> - <td class="list_value"> + <td class="optionbox"> <input type="checkbox" name="conv_path" value="<?php echo WT_Filter::escapeHtml($GEDCOM_MEDIA_PATH); ?>"> <span dir="auto"><?php echo WT_Filter::escapeHtml($GEDCOM_MEDIA_PATH); ?></span> </td></tr> |
