From f6b6c3d3354ba08643e3f08bcdafcc42e385fd1c Mon Sep 17 00:00:00 2001 From: Laureano Passafaro Date: Tue, 9 Feb 2021 03:44:37 -0300 Subject: [PATCH] Another missing id --- ext/relationships/theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/relationships/theme.php b/ext/relationships/theme.php index 90df8956..8cbe1ab3 100644 --- a/ext/relationships/theme.php +++ b/ext/relationships/theme.php @@ -8,7 +8,7 @@ class RelationshipsTheme extends Themelet if ($image->parent_id !== null) { $a = "parent post"; - $page->add_block(new Block(null, "This post belongs to a $a.", "main", 5, "ImageRelationships")); + $page->add_block(new Block(null, "This post belongs to a $a.", "main", 5, "ImageHasParent")); } if (bool_escape($image->has_children)) { @@ -21,7 +21,7 @@ class RelationshipsTheme extends Themelet } $html = rtrim($html, ", ").")."; - $page->add_block(new Block(null, $html, "main", 6)); + $page->add_block(new Block(null, $html, "main", 6, "ImageHasChildren")); } }