blob: a51782ffd9ff288f592d11f1eeadc7aa4077bfe8 (
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()->url(array(), true) ?>">
<?= $item->parent()->url(array(), true) ?>
</a>
</td>
</tr>
</table>
</body>
</html>
|