blob: a95cdd89267639795147d71fc9a0a629dae50736 (
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><?= html::clean($subject) ?> </title>
</head>
<body>
<h2><?= html::clean($subject) ?></h2>
<table>
<tr>
<td colspan="2">
<?= t("To view the changed album %title use the link below.",
array("title" => html::purify($item->parent()->title))) ?>
</td>
</tr>
<tr>
<td><?= t("Url:") ?></td>
<td>
<a href="<?= $item->parent()->abs_url() ?>">
<?= $item->parent()->abs_url() ?>
</a>
</td>
</tr>
</table>
</body>
</html>
|