blob: ac9ab59439f6211422e92baf9dad0cf8b7674f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<head>
<title><?= $subject ?> </title>
</head>
<body>
<h2><?= $subject ?></h2>
<table>
<tr>
<td colspan="2">
<?= t("To view the changed album %title use the link below.",
array("title" => $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>
|