mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-31 02:21:36 +00:00
Empty commit
This commit is contained in:
parent
44f05430fc
commit
59f44b9d77
@ -197,10 +197,10 @@ function user_dupes_table($UserID) {
|
||||
<input type="hidden" id="form_comment_hash" name="form_comment_hash" value="<?=$CommentHash?>" />
|
||||
<div class="box box2" id="l_a_box">
|
||||
<div class="head">
|
||||
<a href="#l_a_box" class="brackets anchor">#</a> Linked Account<?=(($DupeCount == 2) ? '' : 's')?> (<?=max($DupeCount - 1, 0)?>) <a href="#" onclick="$('.linkedaccounts').gtoggle(); return false;" class="brackets">View</a>
|
||||
<a href="#l_a_box" class="brackets anchor">#</a> Linked Accounts (<?=max($DupeCount - 1, 0)?>) <a href="#" onclick="$('.linkedaccounts').gtoggle(); return false;" class="brackets">View</a>
|
||||
</div>
|
||||
<table width="100%" class="layout hidden linkedaccounts">
|
||||
<?=($DupeCount ? '<tr>' : '')?>
|
||||
<?=($DupeCount ? "<tr>\n" : '')?>
|
||||
<?
|
||||
$i = 0;
|
||||
foreach ($Dupes as $Dupe) {
|
||||
@ -212,14 +212,16 @@ function user_dupes_table($UserID) {
|
||||
<a href="user.php?action=dupes&dupeaction=remove&auth=<?=$LoggedUser['AuthKey']?>&userid=<?=$UserID?>&removeid=<?=$DupeID?>" onclick="return confirm('Are you sure you wish to remove <?=$DupeInfo['Username']?> from this group?');" class="brackets tooltip" title="Remove linked account">X</a>
|
||||
</td>
|
||||
<?
|
||||
if ($i == 5) {
|
||||
if ($i == 4) {
|
||||
$i = 0;
|
||||
echo "\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>";
|
||||
echo "\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n";
|
||||
}
|
||||
}
|
||||
if ($DupeCount) {
|
||||
for ($j = $i; $j < 5; $j++) {
|
||||
echo "\t\t\t\t\t\t<td> </td>";
|
||||
if ($i !== 0) {
|
||||
for ($j = $i; $j < 4; $j++) {
|
||||
echo "\t\t\t\t\t\t<td> </td>\n";
|
||||
}
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
|
Loading…
Reference in New Issue
Block a user