このコミットが含まれているのは:
テクニカル諏訪子 2021-06-30 20:58:58 +09:00
コミット 07e5397b9d
1個のファイルの変更9行の追加9行の削除

ファイルの表示

@ -71,25 +71,25 @@
@if (isset($c->replies)) @if (isset($c->replies))
@foreach ($c->replies as $j => $r) @foreach ($c->replies as $j => $r)
<ul class="commentlist"> <ul class="commentlist">
<li class="comment even thread-even depth-2" id="li-comment-${{ $r->id }}"> <li class="comment even thread-even depth-2" id="li-comment-${{ $r['id'] }}">
<div class="commentnumber">{{ $i+1 }}/{{ $j+1 }}({{ $c->src }})</div> <div class="commentnumber">{{ $i+1 }}/{{ $j+1 }}({{ $c->src }})</div>
<div id="comment-{{ $r->id }}"> <div id="comment-{{ $r['id'] }}">
<div> <div>
<cite class="fn"> <cite class="fn">
@if ($c->isvideo != 'f') @if ($c->isvideo != 'f')
<img style="height: 24px;" src="{{ $r->icon }}" alt="{{ $r->name }}さんのアイコン"> <img style="height: 24px;" src="{{ $r['icon'] }}" alt="{{ $r['name'] }}さんのアイコン">
<a href="{{ $r->channel }}">{{ ($r->name ?: '名無しのテクニシャン') }}</a> <a href="{{ $r['channel'] }}">{{ ($r['name'] ?: '名無しのテクニシャン') }}</a>
@else @else
@if ($r->user_id) @if ($r['user_id'])
<a href="/profile/{{ $r->user_id }}`" style="{{ $r->showcol }}"><img style="width: 24px; height: 24px;" src="{{ $r->avatar }}" alt="{{ $r->showname }}さんのアイコン`"> {{ $r->showname }}</a> <a href="/profile/{{ $r['user_id'] }}`" style="{{ $r['showcol'] }}"><img style="width: 24px; height: 24px;" src="{{ $r['avatar'] }}" alt="{{ $r['showname'] }}さんのアイコン`"> {{ $r['showname'] }}</a>
@else @else
{{ ($r->name ?: '名無しのテクニシャン') }} {{ ($r['name'] ?: '名無しのテクニシャン') }}
@endif @endif
@endif @endif
</cite> <span class="says">より:</span> </cite> <span class="says">より:</span>
<span class="comment-meta commentmetadata" id="#comment-{{ $r->id }}"> <a href="#comment-{{ $r->id }}">{{ $r->created }}</a></span> <span class="comment-meta commentmetadata" id="#comment-{{ $r['id'] }}"> <a href="#comment-{{ $r['id'] }}">{{ $r['created'] }}</a></span>
</div> </div>
<p style="white-space: pre-wrap; word-wrap: break-word; width: 500px;"><?php echo $r->message; ?></p> <p style="white-space: pre-wrap; word-wrap: break-word; width: 500px;"><?php echo $r['message']; ?></p>
</div> </div>
</li> </li>
</ul> </ul>