/************************************************************************ ||------------|| 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); View::show_header("Revision history for $Name"); // Set title // Start printing form ?>