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-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>
|
2009-07-16 11:19:34 -07:00
|
|
|
<? if ($item->original("title") != $item->title): ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
<td><?= t("New Title:") ?></td>
|
2009-07-16 11:19:34 -07:00
|
|
|
<td><?= p::clean($item->title) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
<? else: ?>
|
|
|
|
|
<td><?= t("Title:") ?></td>
|
2009-07-16 11:19:34 -07:00
|
|
|
<td><?= p::clean($item->title) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Url:") ?></td>
|
2009-07-16 11:19:34 -07:00
|
|
|
<td><a href="<?= $item->url(array(), true) ?>"><?= $item->url(array(), true) ?></a></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
2009-07-16 11:19:34 -07:00
|
|
|
<? if ($item->original("description") != $item->description): ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><?= t("New Description:") ?></td>
|
2009-07-16 11:19:34 -07:00
|
|
|
<td><?= p::clean($item->description) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
2009-07-16 11:19:34 -07:00
|
|
|
<? elseif (!empty($item->description)): ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Description:") ?></td>
|
2009-07-16 11:19:34 -07:00
|
|
|
<td><?= p::clean($item->description) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
2009-02-02 03:09:17 +00:00
|
|
|
<? endif ?>
|
2009-03-04 06:25:55 +00:00
|
|
|
</table>
|
|
|
|
|
</body>
|
2009-02-02 03:09:17 +00:00
|
|
|
</html>
|