blob: e04fc71bbb1af59ea56c90af57eb72339bb661f6 (
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><?= SafeString::of($subject) ?> </title>
</head>
<body>
<h2><?= SafeString::of($subject) ?></h2>
<table>
<tr>
<td colspan="2">
<?= t("To view the changed album %title use the link below.",
array("title" => SafeString::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>
|