diff --git a/ext/artists/theme.php b/ext/artists/theme.php
index 0041d495..f3a52d24 100644
--- a/ext/artists/theme.php
+++ b/ext/artists/theme.php
@@ -27,19 +27,19 @@ class ArtistsTheme extends Themelet
";
}
-
+
if ($mode == "editor") {
$html = "
-
+
";
-
+
if ($is_admin) {
$html .= "";
}
-
+
$html .= "
-
+
-
+
+
';
global $page;
@@ -354,7 +354,7 @@ class ArtistsTheme extends Themelet
|
| ";
-
+
if ($userIsLogged) {
$html .= " | ";
}
@@ -402,13 +402,13 @@ class ArtistsTheme extends Themelet
$artist_images = "";
foreach ($images as $image) {
$thumb_html = $this->build_thumb_html($image);
-
+
$artist_images .= ''.
''.$thumb_html.''.
'';
}
-
- $page->add_block(new Block("Artist Images", $artist_images, "main", 20));
+
+ $page->add_block(new Block("Artist Posts", $artist_images, "main", 20));
}
private function render_aliases(array $aliases, bool $userIsLogged, bool $userIsAdmin): string
@@ -548,11 +548,11 @@ class ArtistsTheme extends Themelet
public function get_help_html()
{
- return 'Search for images with a particular artist.
+ return 'Search for posts with a particular artist.
artist=leonardo
-
Returns images with the artist "leonardo".
-
+ Returns posts with the artist "leonardo".
+
';
}
}