summaryrefslogtreecommitdiff
path: root/modules/notification/views/comment_published.html.php
blob: 4a7936e681d47d69732a4415323e5e5034a0b11a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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>