2009-02-02 03:09:17 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
|
|
|
<html>
|
2009-03-04 06:25:55 +00:00
|
|
|
<head>
|
2009-08-29 22:54:20 -07:00
|
|
|
<title><?= html::clean($subject) ?> </title>
|
2009-03-04 06:25:55 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2009-08-29 22:54:20 -07:00
|
|
|
<h2> <?= html::clean($subject) ?> </h2>
|
2009-03-04 06:25:55 +00:00
|
|
|
<table>
|
|
|
|
|
<tr>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php if ($original->title != $item->title): ?>
|
2009-10-28 12:15:52 -07:00
|
|
|
<td><?= t("New title:") ?></td>
|
2009-08-29 22:54:20 -07:00
|
|
|
<td><?= html::clean($item->title) ?></td>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php else: ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
<td><?= t("Title:") ?></td>
|
2009-08-29 22:54:20 -07:00
|
|
|
<td><?= html::clean($item->title) ?></td>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endif ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Url:") ?></td>
|
2009-09-10 21:33:04 -07:00
|
|
|
<td><a href="<?= $item->abs_url() ?>"><?= $item->abs_url() ?></a></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php if ($original->description != $item->description): ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
<tr>
|
2009-10-28 12:15:52 -07:00
|
|
|
<td><?= t("New description:") ?></td>
|
2009-08-29 22:54:20 -07:00
|
|
|
<td><?= html::clean($item->description) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php elseif (!empty($item->description)): ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Description:") ?></td>
|
2009-08-29 22:54:20 -07:00
|
|
|
<td><?= html::clean($item->description) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endif ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
</table>
|
|
|
|
|
</body>
|
2009-02-02 03:09:17 +00:00
|
|
|
</html>
|