diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -140,8 +140,10 @@ function get_stories($api_url, $inline_title) { $html = '<div><a href="' . $sub_response['url'] . '">' . $sub_response['title'] . '</a>'; $html .= '<p><time datetime="' . date('Y-m-d h:m:s', $sub_response['time']) . '">'; - $html .= date('Y-m-d h:m:s', $sub_response['time']) . '</time> by '; - $html .= $sub_response['by'] . ' | ' . $sub_response['score'] . ' points</p></div>'; + $html .= date('Y-m-d h:m:s', $sub_response['time']) . '</time> by <a'; + $html .= 'href="/user/'. $sub_response['by'] . '">'; + $html .= $sub_response['by'] . ' | ' . $sub_response['score']; + $html .= 'points</p></div>'; $html_output .= $html; } |