mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 20:21:37 +00:00
Empty commit
This commit is contained in:
parent
177f4c653e
commit
c29d0ad1b9
@ -1358,7 +1358,7 @@ function update_hash($GroupID) {
|
||||
FROM torrents_artists AS ta
|
||||
JOIN artists_alias AS aa ON aa.AliasID=ta.AliasID
|
||||
JOIN torrents_group AS tg ON tg.ID=ta.GroupID
|
||||
WHERE ta.GroupID=$GroupID AND ta.Importance IN ('1', '4', '5')
|
||||
WHERE ta.GroupID=$GroupID AND ta.Importance IN ('1', '4', '5', '6')
|
||||
GROUP BY tg.ID
|
||||
ON DUPLICATE KEY UPDATE ArtistName=values(ArtistName)");
|
||||
|
||||
@ -1742,7 +1742,7 @@ function get_groups($GroupIDs, $Return = true, $GetArtists = true) {
|
||||
$NotFound = array_flip($GroupIDs);
|
||||
|
||||
foreach($GroupIDs as $GroupID) {
|
||||
$Data = $Cache->get_value('torrent_group_'.$GroupID, true);
|
||||
$Data = $Cache->get_value('torrent_group_'.$GroupID);
|
||||
if(!empty($Data) && (@$Data['ver'] >= 4)) {
|
||||
unset($NotFound[$GroupID]);
|
||||
$Found[$GroupID] = $Data['d'];
|
||||
|
@ -25,7 +25,7 @@
|
||||
break;
|
||||
}
|
||||
|
||||
$DB->query("UPDATE staff_pm_conversations SET Level=".$Level." WHERE ID=$ConvID");
|
||||
$DB->query("UPDATE staff_pm_conversations SET Status='Unanswered', Level=".$Level." WHERE ID=$ConvID");
|
||||
header('Location: staffpm.php');
|
||||
} else {
|
||||
error(404);
|
||||
|
@ -368,6 +368,10 @@ p.min_padding {
|
||||
margin: 0px 5px 10px 5px;
|
||||
}
|
||||
|
||||
#AddArtists input {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.head {
|
||||
padding: 4px;
|
||||
background: #b78234 url(images/woodnavcenter.png) repeat-x;
|
||||
|
Loading…
Reference in New Issue
Block a user