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")); } }