Home page lbry link fix
This commit is contained in:
parent
9f98c64d18
commit
b8a685a8dc
1 changed files with 1 additions and 9 deletions
|
@ -187,14 +187,6 @@
|
||||||
foreach ($recentClaims as $claim):
|
foreach ($recentClaims as $claim):
|
||||||
$idx++;
|
$idx++;
|
||||||
$autoThumbText = $claim->getAutoThumbText();
|
$autoThumbText = $claim->getAutoThumbText();
|
||||||
$link = $claim->name;
|
|
||||||
$rawLink = $claim->name;
|
|
||||||
if (isset($claim->publisher)) {
|
|
||||||
$link = urlencode($claim->publisher) . '/' . $link;
|
|
||||||
$rawLink = $claim->publisher . '/' . $link;
|
|
||||||
}
|
|
||||||
$link = 'lbry://' . $link;
|
|
||||||
$rawLink = 'lbry://' . $rawLink;
|
|
||||||
|
|
||||||
// content type
|
// content type
|
||||||
$ctTag = $claim->getContentTag();
|
$ctTag = $claim->getContentTag();
|
||||||
|
@ -219,7 +211,7 @@
|
||||||
|
|
||||||
<div class="metadata">
|
<div class="metadata">
|
||||||
<div class="title" title="<?php echo $claim->claim_type == 1 ? $claim->name : ((strlen(trim($claim->title)) > 0) ? $claim->title : ''); ?>"><?php echo $claim->claim_type == 1 ? $claim->name : ((strlen(trim($claim->title)) > 0) ? $claim->title : '<em>No Title</em>') ?></div>
|
<div class="title" title="<?php echo $claim->claim_type == 1 ? $claim->name : ((strlen(trim($claim->title)) > 0) ? $claim->title : ''); ?>"><?php echo $claim->claim_type == 1 ? $claim->name : ((strlen(trim($claim->title)) > 0) ? $claim->title : '<em>No Title</em>') ?></div>
|
||||||
<div class="link" title="<?php echo $rawLink ?>"><a href="<?php echo $link ?>"><?php echo $rawLink ?></a></div>
|
<div class="link" title="<?php echo $claim->getLbryLink() ?>"><a href="<?php echo $claim->getLbryLink() ?>"><?php echo $claim->getLbryLink() ?></a></div>
|
||||||
|
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<?php if ($claim->claim_type == 2 && strlen(trim($claim->description)) > 0): ?>
|
<?php if ($claim->claim_type == 2 && strlen(trim($claim->description)) > 0): ?>
|
||||||
|
|
Loading…
Reference in a new issue