summaryrefslogtreecommitdiff
path: root/modules/notification/views/item_deleted.html.php
blob: 922152116eb37360f023d9a116da681fa3bfcea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
  <head>
    <title><?= p::clean($subject) ?> </title>
  </head>
  <body>
    <h2><?= p::clean($subject) ?></h2>
    <table>
      <tr>
        <td colspan="2">
          <?= t("To view the changed album %title use the link below.",
              array("title" => p::purify($item->parent()->title))) ?>
        </td>
      </tr>
      <tr>
        <td><?= t("Url:") ?></td>
        <td>
          <a href="<?= $item->parent()->url(array(), true) ?>">
            <?= $item->parent()->url(array(), true) ?>
          </a>
        </td>
      </tr>
    </table>
  </body>
</html>