mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
20 lines
422 B
PHP
20 lines
422 B
PHP
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title><?= $subject ?> </title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h2><?= sprintf(t("A new comment was added by %s"), $author); ?></h2>
|
||
|
|
<table>
|
||
|
|
<tr>
|
||
|
|
<td><?= t("Comment:") ?></td>
|
||
|
|
<td><?= $text ?></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td><?= t("Url:") ?></td>
|
||
|
|
<td><a href="<?= $url ?>"><?= $url ?></a></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</body>
|
||
|
|
</html>
|