tweak the enclosure dropdown display a little bit for less-readable urls
This commit is contained in:
parent
db92edd1aa
commit
c606bd5741
1 changed files with 9 additions and 3 deletions
|
@ -1944,7 +1944,8 @@
|
||||||
|
|
||||||
if (!$ctype) $ctype = __("unknown type");
|
if (!$ctype) $ctype = __("unknown type");
|
||||||
|
|
||||||
$filename = substr($url, strrpos($url, "/")+1);
|
//$filename = substr($url, strrpos($url, "/")+1);
|
||||||
|
$filename = basename($url);
|
||||||
|
|
||||||
$player = format_inline_player($url, $ctype);
|
$player = format_inline_player($url, $ctype);
|
||||||
|
|
||||||
|
@ -2025,12 +2026,17 @@
|
||||||
|
|
||||||
foreach ($entries as $entry) {
|
foreach ($entries as $entry) {
|
||||||
if ($entry["title"])
|
if ($entry["title"])
|
||||||
$title = "— " . truncate_string($entry["title"], 30);
|
$title = " — " . truncate_string($entry["title"], 30);
|
||||||
else
|
else
|
||||||
$title = "";
|
$title = "";
|
||||||
|
|
||||||
|
if ($entry["filename"])
|
||||||
|
$filename = truncate_middle(htmlspecialchars($entry["filename"]), 60);
|
||||||
|
else
|
||||||
|
$filename = "";
|
||||||
|
|
||||||
$rv .= "<div onclick='window.open(\"".htmlspecialchars($entry["url"])."\")'
|
$rv .= "<div onclick='window.open(\"".htmlspecialchars($entry["url"])."\")'
|
||||||
dojoType=\"dijit.MenuItem\">".htmlspecialchars($entry["filename"])."$title</div>";
|
dojoType=\"dijit.MenuItem\">".$filename . $title."</div>";
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue