changed NSFW label on claims detail page

This commit is contained in:
Akinwale Ariwodola 2017-06-16 09:53:18 +01:00
parent b53b71ebfc
commit e2480c65f3

View file

@ -104,10 +104,10 @@ if (strlen(trim($desc)) == 0) {
<?php if ($claim->ClaimType == 2): ?>
<div class="label half-width">Cost</div>
<div class="label half-width">NSFW</div>
<div class="label half-width">Safe for work</div>
<div class="value half-width"><?php echo $cost ?></div>
<div class="value half-width"><?php echo $claim->IsNSFW ? 'Yes' : 'No' ?></div>
<div class="value half-width"><?php echo $claim->IsNSFW ? 'No' : 'Yes' ?></div>
<div class="clear"></div>
<?php endif; ?>