Files
gallery3/modules/notification/views/item_deleted.html.php
Tim Almdal 54ffea2419 Split the clean method into two clean and purify. clean is a light weight
approach using html::specialchars and purify uses HTMLPurifier to intelligently
cleanse the output fields. Use purifier for text and title fields where it is
likely that a user would enter html to format their data.
2009-07-03 21:44:10 -07:00

26 lines
648 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<head>
<title><?= p::clean($subject) ?> </title>
</head>
<body>
<h2><?= p::clean($subject) ?></h2>
<table>
<tr>
<td colspan="2">
<?= t("To view the changed album %title use the link below.",
array("title" => p::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>