|
@@ -602,7 +602,7 @@ function ViewMemberlist()
|
|
|
),
|
|
|
);
|
|
|
|
|
|
- // Without not enough permissions, don't show 'delete members' checkboxes.
|
|
|
+ // Without enough permissions, don't show 'delete members' checkboxes.
|
|
|
if (!allowedTo('profile_remove_any'))
|
|
|
unset($listOptions['cols']['check'], $listOptions['form'], $listOptions['additional_rows']);
|
|
|
|
|
@@ -963,15 +963,13 @@ function MembersAwaitingActivation()
|
|
|
array(
|
|
|
'position' => 'below_table_data',
|
|
|
'value' => '
|
|
|
- <div class="floatleft">
|
|
|
- [<a href="' . $scripturl . '?action=admin;area=viewmembers;sa=browse;showdupes=' . ($context['show_duplicates'] ? 0 : 1) . ';type=' . $context['browse_type'] . (!empty($context['show_filter']) ? ';filter=' . $context['current_filter'] : '') . ';' . $context['session_var'] . '=' . $context['session_id'] . '">' . ($context['show_duplicates'] ? $txt['dont_check_for_duplicate'] : $txt['check_for_duplicate']) . '</a>]
|
|
|
- </div>
|
|
|
- <div class="floatright">
|
|
|
- <select name="todo" onchange="onSelectChange();">
|
|
|
- ' . $allowed_actions . '
|
|
|
- </select>
|
|
|
- <noscript><input type="submit" value="' . $txt['go'] . '" class="button_submit" /></noscript>
|
|
|
- </div>',
|
|
|
+ [<a href="' . $scripturl . '?action=admin;area=viewmembers;sa=browse;showdupes=' . ($context['show_duplicates'] ? 0 : 1) . ';type=' . $context['browse_type'] . (!empty($context['show_filter']) ? ';filter=' . $context['current_filter'] : '') . ';' . $context['session_var'] . '=' . $context['session_id'] . '">' . ($context['show_duplicates'] ? $txt['dont_check_for_duplicate'] : $txt['check_for_duplicate']) . '</a>]
|
|
|
+ <select name="todo" onchange="onSelectChange();">
|
|
|
+ ' . $allowed_actions . '
|
|
|
+ </select>
|
|
|
+ <noscript><input type="submit" value="' . $txt['go'] . '" class="button_submit" /><br class="clear_right"></noscript>
|
|
|
+ ',
|
|
|
+ 'class' => 'floatright',
|
|
|
),
|
|
|
),
|
|
|
);
|
|
@@ -999,9 +997,9 @@ function MembersAwaitingActivation()
|
|
|
</select>
|
|
|
<noscript><input type="submit" value="' . $txt['go'] . '" name="filter" class="button_submit" /></noscript>';
|
|
|
$listOptions['additional_rows'][] = array(
|
|
|
- 'position' => 'above_column_headers',
|
|
|
+ 'position' => 'top_of_list',
|
|
|
'value' => $filterOptions,
|
|
|
- 'style' => 'text-align: center;',
|
|
|
+ 'class' => 'righttext',
|
|
|
);
|
|
|
}
|
|
|
|
|
@@ -1010,8 +1008,7 @@ function MembersAwaitingActivation()
|
|
|
$listOptions['additional_rows'][] = array(
|
|
|
'position' => 'above_column_headers',
|
|
|
'value' => '<strong>' . $txt['admin_browse_filter_show'] . ':</strong> ' . $context['available_filters'][0]['desc'],
|
|
|
- 'class' => 'smalltext',
|
|
|
- 'style' => 'text-align: left;',
|
|
|
+ 'class' => 'smalltext floatright',
|
|
|
);
|
|
|
|
|
|
// Now that we have all the options, create the list.
|