mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 03:19:13 -04:00
26 lines
657 B
PHP
26 lines
657 B
PHP
<?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>
|