diff options
| author | ilotterytea <iltsu@alright.party> | 2025-05-14 23:18:20 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-05-14 23:19:32 +0500 |
| commit | 44334d654977ed4ecd601c7a47127f91dea1517d (patch) | |
| tree | 64b7c5c08c4a69af14dbae9b55566e202c6fe521 /public/system/emotes/index.php | |
| parent | d461b5be189cb2f38a48e0e1d1e0ee6570b6e877 (diff) | |
feat: emote source
Diffstat (limited to 'public/system/emotes/index.php')
| -rw-r--r-- | public/system/emotes/index.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/public/system/emotes/index.php b/public/system/emotes/index.php index 9732bdb..9e88d83 100644 --- a/public/system/emotes/index.php +++ b/public/system/emotes/index.php @@ -179,6 +179,15 @@ if (isset($_GET["id"])) { <th>Notes</th> <td><?php echo isset($emote["notes"]) == true ? $emote["notes"] : '<i>Empty</i>' ?></td> </tr> + <?php if ($emote["source"]): ?> + <tr> + <th>Source</th> + <td> + <a href="<?php echo $emote["source"] ?>" + target="_blank"><?php echo $emote["source"] ?></a> + </td> + </tr> + <?php endif; ?> </table> </section> <!-- Mod actions on emote --> |
