diff options
| author | Developer | 2026-06-27 04:21:22 +0200 |
|---|---|---|
| committer | Developer | 2026-06-27 04:21:22 +0200 |
| commit | 81cd80aea8bfdec1c68ae5082fced1b0a3f5e51d (patch) | |
| tree | 15fb8478ef4bc42e99124d7e2447e56f05519f3b /app/Http/Controllers/CinemaController.php | |
| parent | dc3cbbfdd9455e419eaaf776c16544afdf95eadb (diff) | |
| download | curious-81cd80aea8bfdec1c68ae5082fced1b0a3f5e51d.tar.gz | |
fix: show comment text for HN comment entries on movie page
Comments now display as 'Comment: <beginning of text>' with single-line
truncation via hn-comment CSS class. Story-type entries still show title.
Diffstat (limited to 'app/Http/Controllers/CinemaController.php')
| -rw-r--r-- | app/Http/Controllers/CinemaController.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Http/Controllers/CinemaController.php b/app/Http/Controllers/CinemaController.php index d8adefa..75c93aa 100644 --- a/app/Http/Controllers/CinemaController.php +++ b/app/Http/Controllers/CinemaController.php @@ -100,6 +100,8 @@ class CinemaController extends Controller ->select( 'story.story_id', 'story.title', + 'story.type', + 'story.text', 'story.score', 'story.descendants', 'story.time' |
