aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2023-06-01 09:48:58 -0500
committerChristian Cleberg <hello@cleberg.net>2023-06-01 09:48:58 -0500
commit9fcf6929aa23c0eee6c2a9bf5c29d4e2015ba936 (patch)
tree1f966b5b9ab890509e9a97a42c84ebbd651ed804
parent2a57019b0c2d8fa5cb466aef23a3925488c47b84 (diff)
downloadhn-9fcf6929aa23c0eee6c2a9bf5c29d4e2015ba936.tar.gz
hn-9fcf6929aa23c0eee6c2a9bf5c29d4e2015ba936.tar.bz2
hn-9fcf6929aa23c0eee6c2a9bf5c29d4e2015ba936.zip
format line lengths
-rw-r--r--index.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/index.php b/index.php
index 89eab4d..8afaa13 100644
--- a/index.php
+++ b/index.php
@@ -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;
}