summaryrefslogtreecommitdiff
path: root/htdocs/moderate/index.php
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2011-08-30 10:37:35 -0700
committerJesse Morgan <jesse@jesterpm.net ; true>2011-08-30 10:37:35 -0700
commit558684e32769d9dbd0d27a6feb3bbb9cf9aa22d7 (patch)
treefe3bb494162e238e59a9a2f1b013dfa317e946b8 /htdocs/moderate/index.php
parent273112695da89b8d0d6ac54a5f4f068969c0bd70 (diff)
Abstracted source name code and added a source name listing to the moderation index. (Eventum #33).HEADmaster
Diffstat (limited to 'htdocs/moderate/index.php')
-rw-r--r--htdocs/moderate/index.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/htdocs/moderate/index.php b/htdocs/moderate/index.php
index 908c43b..7d35eb0 100644
--- a/htdocs/moderate/index.php
+++ b/htdocs/moderate/index.php
@@ -28,12 +28,13 @@ $posts->query();
if ($posts->valid()) {
foreach ($posts as $id => $post) {
printf("<div class=\"post\"><p><a href=\"%s/postings/%s.html?moderate\">%s</a></p>"
- . "%s <a href=\"mailto:%s\">%s</a></div>",
+ . "%s <a href=\"mailto:%s\">%s</a> - %s</div>",
$GLOBALS['CONFIG']['urlroot'],
$id, $post->getName(),
$post->getCreated(),
- $post->getEmail(), $post->getEmail());
+ $post->getEmail(), $post->getEmail(),
+ $post->getSourceName());
}
} else {