From 6d01dd83fe076172547814c3a955edaadb4a9557 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 30 Jan 2017 15:23:44 +0100 Subject: [PATCH] Bugfix: fix the author image in the meta elements in html head (display module) --- mod/display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/display.php b/mod/display.php index adbe7c6761..1f1fd11204 100644 --- a/mod/display.php +++ b/mod/display.php @@ -420,7 +420,7 @@ function display_content(App $a, $update = 0) { $title = trim(html2plain(bbcode($r[0]["title"], false, false), 0, true)); $author_name = $r[0]["author-name"]; - $image = $a->remove_baseurl($r[0]["thumb"]); + $image = $a->remove_baseurl($r[0]["author-thumb"]); if ($title == "") { $title = $author_name;