Browse Source

Remove references to artist concerts

spaghetti 8 years ago
parent
commit
0ac9a70f10
2 changed files with 1 additions and 17 deletions
  1. 0
    9
      gazelle.sql
  2. 1
    8
      sections/artist/artist.php

+ 0
- 9
gazelle.sql View File

@@ -247,15 +247,6 @@ CREATE TABLE `comments_edits_tmp` (
247 247
   KEY `PostHistory` (`Page`,`PostID`,`EditTime`)
248 248
 ) ENGINE=InnoDB CHARSET=utf8;
249 249
 
250
-CREATE TABLE `concerts` (
251
-  `ID` int(11) NOT NULL AUTO_INCREMENT,
252
-  `ConcertID` int(10) NOT NULL,
253
-  `TopicID` int(10) NOT NULL,
254
-  PRIMARY KEY (`ID`),
255
-  KEY `ConcertID` (`ConcertID`),
256
-  KEY `TopicID` (`TopicID`)
257
-) ENGINE=InnoDB CHARSET=utf8;
258
-
259 250
 CREATE TABLE `cover_art` (
260 251
   `ID` int(10) NOT NULL AUTO_INCREMENT,
261 252
   `GroupID` int(10) NOT NULL,

+ 1
- 8
sections/artist/artist.php View File

@@ -443,9 +443,6 @@ if (check_perms('site_torrents_notify')) {
443 443
       <a href="artist.php?action=revert&amp;artistid=<?=$ArtistID?>&amp;revisionid=<?=$RevisionID?>&amp;auth=<?=$LoggedUser['AuthKey']?>" class="brackets">Revert to this revision</a>
444 444
 <?  } ?>
445 445
       <a href="artist.php?id=<?=$ArtistID?>#info" class="brackets">Info</a>
446
-<?  if (defined('LASTFM_API_KEY')) { ?>
447
-      <a href="artist.php?id=<?=$ArtistID?>#concerts" class="brackets">Concerts</a>
448
-<?  } ?>
449 446
       <a href="artist.php?id=<?=$ArtistID?>#artistcomments" class="brackets">Comments</a>
450 447
 <?  if (check_perms('site_delete_artist') && check_perms('torrents_delete')) { ?>
451 448
       <a href="artist.php?action=delete&amp;artistid=<?=$ArtistID?>&amp;auth=<?=$LoggedUser['AuthKey']?>" class="brackets">Delete</a>
@@ -863,11 +860,7 @@ function require(file, callback) {
863 860
 //]]>
864 861
 </script>
865 862
 
866
-<? } // if $NumSimilar > 0 ?>
867
-<?
868
-if (defined('LASTFM_API_KEY')) {
869
-  include(SERVER_ROOT.'/sections/artist/concerts.php');
870
-}
863
+<? }
871 864
 
872 865
 // --- Comments ---
873 866
 $Pages = Format::get_pages($Page, $NumComments, TORRENT_COMMENTS_PER_PAGE, 9, '#comments');

Loading…
Cancel
Save