2009-02-02 05:00:09 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
|
|
|
<html>
|
2009-03-04 06:25:55 +00:00
|
|
|
<head>
|
2009-05-31 01:02:51 -07:00
|
|
|
<title><?= p::clean($subject) ?> </title>
|
2009-03-04 06:25:55 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2009-05-31 01:02:51 -07:00
|
|
|
<h2><?= p::clean($subject) ?></h2>
|
2009-03-04 06:25:55 +00:00
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2">
|
|
|
|
|
<?= t("To view the changed album %title use the link below.",
|
2009-05-31 01:02:51 -07:00
|
|
|
array("title" => p::clean($item->parent()->title))) ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Url:") ?></td>
|
2009-05-31 01:02:51 -07:00
|
|
|
<td>
|
|
|
|
|
<a href="<?= $item->parent()->url(array(), true) ?>">
|
|
|
|
|
<?= $item->parent()->url(array(), true) ?>
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</body>
|
2009-02-02 05:00:09 +00:00
|
|
|
</html>
|