format_inline_player: add a link to original audio file
This commit is contained in:
parent
897589a5c3
commit
44cd77b642
|
@ -2870,6 +2870,8 @@
|
|||
|
||||
$entry = "";
|
||||
|
||||
$url = htmlspecialchars($url);
|
||||
|
||||
if (strpos($ctype, "audio/") === 0) {
|
||||
|
||||
if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
|
||||
|
@ -2896,7 +2898,8 @@
|
|||
</object>";
|
||||
}
|
||||
|
||||
if ($entry) $entry .= " " . basename($url);
|
||||
if ($entry) $entry .= " <a target=\"_blank\"
|
||||
href=\"$url\">" . basename($url) . "</a>";
|
||||
|
||||
return $entry;
|
||||
|
||||
|
|
Loading…
Reference in New Issue