Browse Source

Respect anonymity on requests list

spaghetti 7 years ago
parent
commit
2d9d659519
1 changed files with 7 additions and 3 deletions
  1. 7
    3
      sections/requests/requests.php

+ 7
- 3
sections/requests/requests.php View File

550
 <?    } ?>
550
 <?    } ?>
551
       </td>
551
       </td>
552
       <td>
552
       <td>
553
-<?    if ($IsFilled) { ?>
554
-        <a href="user.php?id=<?=$FillerInfo['ID']?>"><?=$FillerInfo['Username']?></a>
555
-<?    } else { ?>
553
+<?    if ($IsFilled) {
554
+        if ($Request['AnonymousFill']) { ?>
555
+          <em>Anonymous</em>
556
+<?      } else { ?>
557
+          <a href="user.php?id=<?=$FillerInfo['ID']?>"><?=$FillerInfo['Username']?></a>
558
+<?      }
559
+      } else { ?>
556
         &mdash;
560
         &mdash;
557
 <?    } ?>
561
 <?    } ?>
558
       </td>
562
       </td>

Loading…
Cancel
Save