mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?
|
|
/************************************************************************
|
|
||------------|| Artist wiki history page ||---------------------------||
|
|
|
|
This page lists previous revisions of the artists page. It gets called
|
|
if $_GET['action'] == 'history'.
|
|
|
|
It also requires $_GET['artistid'].
|
|
|
|
The wiki class is used here to generate the page history.
|
|
|
|
************************************************************************/
|
|
|
|
$ArtistID = $_GET['artistid'];
|
|
if(!is_number($ArtistID)) { error(0); }
|
|
|
|
include(SERVER_ROOT.'/classes/class_wiki.php'); // Wiki class
|
|
$Wiki = new WIKI('wiki_artists', $ArtistID, "artist.php?id=$ArtistID");
|
|
|
|
// Get the artist name and the body of the last revision
|
|
$DB->query("SELECT Name FROM artists_group WHERE ArtistID='$ArtistID'");
|
|
list($Name) = $DB->next_record(MYSQLI_NUM, true);
|
|
|
|
show_header("Revision history for ".$Name); // Set title
|
|
|
|
// Start printing form
|
|
?>
|
|
<div class="thin">
|
|
<h2>Revision history for <a href="artist.php?id=<?=$ArtistID?>"><?=$Name?></a></h2>
|
|
<?
|
|
$Wiki->revision_history(); // the wiki class takes over from here
|
|
?>
|
|
</div>
|
|
<?
|
|
show_footer();
|
|
?>
|