get_art(); if (!$art['art_mime']) { header('Content-type: image/gif'); readfile(Config::get('prefix') . Config::get('theme_path') . '/images/blankalbum.gif'); break; } // else no image // Print the album art $data = explode("/",$art['art_mime']); $extension = $data['1']; // if (empty($_REQUEST['thumb'])) { $art_data = $art['art']; // } //else { // $art_data = img_resize($art,$size,$extension,$_REQUEST['id']); //} // Send the headers and output the image header("Content-type: $mime"); header("Content-Disposition: filename=" . $album->name . "." . $extension); echo $art_data; break; } // end switch type ?> pache/ampache.git/tree/?h=testing&id=1c85db030e548e6bf7434e86070e4ba05917a325'>root/templates/sidebar_browse.inc.php
blob: 7bef434857bf315911bbc539acd1e2ec60c345d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75