diff --git a/ext/relationships/theme.php b/ext/relationships/theme.php index 8b484fa6..90df8956 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)); + $page->add_block(new Block(null, "This post belongs to a $a.", "main", 5, "ImageRelationships")); } if (bool_escape($image->has_children)) { diff --git a/ext/view/theme.php b/ext/view/theme.php index 41e5715f..677d4889 100644 --- a/ext/view/theme.php +++ b/ext/view/theme.php @@ -23,7 +23,7 @@ class ViewImageTheme extends Themelet $page->set_title("Post {$image->id}: ".$image->get_tag_list()); $page->set_heading(html_escape($image->get_tag_list())); $page->add_block(new Block("Navigation", $this->build_navigation($image), "left", 0)); - $page->add_block(new Block(null, $this->build_info($image, $editor_parts), "main", 20)); + $page->add_block(new Block(null, $this->build_info($image, $editor_parts), "main", 20, "ImageInfo")); //$page->add_block(new Block(null, $this->build_pin($image), "main", 11)); $query = $this->get_query();