mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
fix: actually link the paste in the non-js archive
This commit is contained in:
parent
1b1a3795e4
commit
75d6160083
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php foreach ($pastes as $paste): ?>
|
<?php foreach ($pastes as $paste): ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?= pp_html_escape($paste->title) ?></td>
|
<td><a href="<?= urlForPaste($paste); ?>"><?= pp_html_escape($paste->title) ?></a></td>
|
||||||
<td><?= pp_html_escape($paste->user->username) ?></td>
|
<td><?= pp_html_escape($paste->user->username) ?></td>
|
||||||
<td><?= pp_html_escape($paste->updated_at ?? $paste->created_at) ?></td>
|
<td><?= pp_html_escape($paste->updated_at ?? $paste->created_at) ?></td>
|
||||||
<td><?= tagsToHtml($paste->tags) ?></td>
|
<td><?= tagsToHtml($paste->tags) ?></td>
|
||||||
|
|
Loading…
Add table
Reference in a new issue