diff options
| author | Syndamia <kamen@syndamia.com> | 2025-02-02 15:04:59 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-02-02 15:05:05 +0200 |
| commit | d7c2e638a5ea39caeadd40406f840e9b90f893d5 (patch) | |
| tree | 3568f96aa508e01b9c7ee34cba261f4e16d186a2 /views/list/index.php | |
| parent | d6dcab722a4e4f3472d3e4128bd6f4a6d5661a31 (diff) | |
| download | nowayforward_human-d7c2e638a5ea39caeadd40406f840e9b90f893d5.tar nowayforward_human-d7c2e638a5ea39caeadd40406f840e9b90f893d5.tar.gz nowayforward_human-d7c2e638a5ea39caeadd40406f840e9b90f893d5.zip | |
feat(views/archive): Implement archive deletion
Diffstat (limited to 'views/list/index.php')
| -rw-r--r-- | views/list/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/list/index.php b/views/list/index.php index d422630..759ab04 100644 --- a/views/list/index.php +++ b/views/list/index.php @@ -1,10 +1,12 @@ <?php $list = null; $author = null; + $user = null; try { $list = Database\ArchiveList::fromDB($lid ?? -1); $author = Database\User::fromDBuid($list->AuthorUID); + $user = Database\Cookie::fromDB($TOKEN); } catch(Exception $e) {} ?> |
