changed NSFW label on claims detail page
This commit is contained in:
parent
b53b71ebfc
commit
e2480c65f3
1 changed files with 2 additions and 2 deletions
|
@ -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; ?>
|
||||
|
|
Loading…
Reference in a new issue