Empty commit

This commit is contained in:
Git 2013-12-30 08:01:05 +00:00
parent 44f05430fc
commit 59f44b9d77

View File

@ -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&amp;dupeaction=remove&amp;auth=<?=$LoggedUser['AuthKey']?>&amp;userid=<?=$UserID?>&amp;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>&nbsp;</td>";
if ($i !== 0) {
for ($j = $i; $j < 4; $j++) {
echo "\t\t\t\t\t\t<td>&nbsp;</td>\n";
}
}
?>
</tr>