fix link position

This commit is contained in:
trinkey 2025-03-17 16:36:24 -04:00
parent 921f154196
commit 67043fa313

View file

@ -42,15 +42,18 @@ if ($_GET["sent"] == 1) {
</form> </form>
</details> </details>
</div> </div>
<?php
if ($emojiEnabled) {
echo("<a href=\"emoji.php\">view emoji list</a>");
}
?>
<hr> <hr>
<h3 class="sect">all past messages</h3> <h3 class="sect">all past messages</h3>
<?php <?php
if ($emojiEnabled) {
echo("<a href=\"emoji.php\">view emoji list</a>");
}
foreach (array_reverse($questions) as $question){ foreach (array_reverse($questions) as $question){
echo(getQuestion($question)); echo(getQuestion($question));
} }