Gazelle/sections/artist/history.php

28 lines
602 B
PHP
Raw Permalink Normal View History

2011-03-28 14:21:28 +00:00
<?
2013-12-24 08:00:55 +00:00
if (!is_number($_GET['artistid'])) {
2013-05-05 08:00:31 +00:00
error(0);
}
2013-12-24 08:00:55 +00:00
$ArtistID = (int)$_GET['artistid'];
2011-03-28 14:21:28 +00:00
2013-06-20 08:01:00 +00:00
$DB->query("
SELECT Name
FROM artists_group
2013-12-24 08:00:55 +00:00
WHERE ArtistID = $ArtistID");
if (!$DB->has_results()) {
error(404);
}
list($Name) = $DB->next_record();
2011-03-28 14:21:28 +00:00
2013-12-24 08:00:55 +00:00
View::show_header("Revision history for $Name");
2011-03-28 14:21:28 +00:00
?>
<div class="thin">
2012-08-19 08:00:19 +00:00
<div class="header">
<h2>Revision history for <a href="artist.php?id=<?=$ArtistID?>"><?=$Name?></a></h2>
</div>
2011-03-28 14:21:28 +00:00
<?
2013-12-24 08:00:55 +00:00
RevisionHistoryView::render_revision_history(RevisionHistory::get_revision_history('artists', $ArtistID), "artist.php?id=$ArtistID");
2011-03-28 14:21:28 +00:00
?>
</div>
<?
2012-10-11 08:00:15 +00:00
View::show_footer();