Show missing file filenames
This commit is contained in:
parent
51a7e57c91
commit
7a39bfd7d5
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@
|
||||||
$embed .= '<p>Your browser doesn\'t support HTML video. Here is a <a href="' . url("/videos/" . $filepath[1]) . '">link to the video</a> instead.</p>';
|
$embed .= '<p>Your browser doesn\'t support HTML video. Here is a <a href="' . url("/videos/" . $filepath[1]) . '">link to the video</a> instead.</p>';
|
||||||
$embed .= '</video>';
|
$embed .= '</video>';
|
||||||
} else {
|
} else {
|
||||||
$embed = '<p>[This video has not yet been uploaded, try again later.]</p>';
|
$embed = '<p>[The video \'' . $filepath[1] . '\' has not yet been uploaded, try again later.]</p>';
|
||||||
}
|
}
|
||||||
} elseif (preg_match("/\.ogg/", $filepath[1])) {
|
} elseif (preg_match("/\.ogg/", $filepath[1])) {
|
||||||
if (file_exists(public_path() . "/audio/" . $filepath[1])) {
|
if (file_exists(public_path() . "/audio/" . $filepath[1])) {
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
$embed .= '<p>Download <a href="' . url("/audio/" . $filepath[1]) . '">OGG</a> audio.</p>';
|
$embed .= '<p>Download <a href="' . url("/audio/" . $filepath[1]) . '">OGG</a> audio.</p>';
|
||||||
$embed .= '</audio>';
|
$embed .= '</audio>';
|
||||||
} else {
|
} else {
|
||||||
$embed = '<p>[This audio recording has not yet been uploaded, try again later.]</p>';
|
$embed = '<p>[The recording \'' . $filepath[1] . '\' has not yet been uploaded, try again later.]</p>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$checkin->note = preg_replace("/\[\[[^\]]+\]\]/", $embed, $checkin->note);
|
$checkin->note = preg_replace("/\[\[[^\]]+\]\]/", $embed, $checkin->note);
|
||||||
|
|
Loading…
Reference in a new issue