diff --git a/contrib/artists/theme.php b/contrib/artists/theme.php index 17fc9496..1bb9e2ed 100644 --- a/contrib/artists/theme.php +++ b/contrib/artists/theme.php @@ -3,7 +3,15 @@ class ArtistsTheme extends Themelet { public function get_author_editor_html(/*string*/ $author) { $h_author = html_escape($author); - return "Author"; + return " + + Author + + $h_author + + + + "; } public function display_artists(){ @@ -11,7 +19,7 @@ class ArtistsTheme extends Themelet { $page->set_title("Artists"); $page->set_heading("Artists"); - $page->add_block(new Block("Artists", $html, "main", 10)); + $page->add_block(new Block("Artists", $html, "main", 10)); //$this->display_paginator($page, "artist/list", null, $pageNumber, $totalPages); }