mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
Minor improvements (#952)
This commit is contained in:
parent
f6302ca550
commit
1ac777c1f7
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ switch ($mode) {
|
|||
foreach (DB()->fetch_rowset($sql) as $row) {
|
||||
$class = ($row['user_pending']) ? 'med' : 'med bold';
|
||||
$class .= ($row['group_moderator'] == $user_id) ? ' colorMod' : '';
|
||||
$href = "group.php?g={$row['group_id']}";
|
||||
$href = GROUP_URL . $row['group_id'];
|
||||
|
||||
if (IS_ADMIN) {
|
||||
$href .= "&u=$user_id";
|
||||
|
|
|
@ -221,7 +221,7 @@ class Atom
|
|||
$atom .= " </author>\n";
|
||||
$atom .= " <updated>" . $date . "T$time+00:00</updated>\n";
|
||||
$atom .= " <id>tag:rto.feed," . $date . ":/t/$topic_id</id>\n";
|
||||
$atom .= " <link href=\"" . TOPIC_URL . "$topic_id\" />\n";
|
||||
$atom .= " <link href=" . TOPIC_URL . $topic_id . " />\n";
|
||||
$atom .= "</entry>\n";
|
||||
}
|
||||
$atom .= "</feed>";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue