echo $row['ownerID'];
        ?>
">
                                        <?php 
        echo $row['ownerName'];
        ?>
                                    </a>
                                </div>
                                <div class="td td-content">
                                    <?php 
        switch ($row['objectType']) {
            case 'post':
                echo '<a href="/posts.php?user='******'ownerID'] . '&post=' . $row['objectID'] . '">Post - ' . $row['objectID'] . '</a>';
                break;
            case 'comment':
                $tPost = BuckysComment::getPost($row['objectID']);
                echo '<a href="/posts.php?user='******'poster'] . '&post=' . $tPost['postID'] . '">Comment - ' . $row['objectID'] . '</a>';
                break;
            case 'video_comment':
                echo '<a href="/videos.php?video=' . BuckysVideo::getVideoIDByCommentID($row['objectID']) . '">Video Comment - ' . $row['objectID'] . '</a>';
                break;
            case 'topic':
                echo '<a href="/forum/topic.php?id=' . $row['objectID'] . '">Forum Topic - ' . $row['objectID'] . '</a>';
                break;
            case 'message':
                echo '<a href="/messages_read.php?message=' . $row['objectID'] . '">Message - ' . $row['objectID'] . '</a>';
                break;
            case 'reply':
                echo '<a href="/forum/topic.php?id=' . BuckysForumReply::getForumID($row['objectID']) . '">Forum Reply - ' . $row['objectID'] . '</a>';
                break;
            case 'trade_item':