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

ファイルの表示

@ -71,25 +71,25 @@
@if (isset($c->replies))
@foreach ($c->replies as $j => $r)
<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 id="comment-{{ $r->id }}">
<div id="comment-{{ $r['id'] }}">
<div>
<cite class="fn">
@if ($c->isvideo != 'f')
<img style="height: 24px;" src="{{ $r->icon }}" alt="{{ $r->name }}さんのアイコン">
<a href="{{ $r->channel }}">{{ ($r->name ?: '名無しのテクニシャン') }}</a>
<img style="height: 24px;" src="{{ $r['icon'] }}" alt="{{ $r['name'] }}さんのアイコン">
<a href="{{ $r['channel'] }}">{{ ($r['name'] ?: '名無しのテクニシャン') }}</a>
@else
@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>
@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>
@else
{{ ($r->name ?: '名無しのテクニシャン') }}
{{ ($r['name'] ?: '名無しのテクニシャン') }}
@endif
@endif
</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>
<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>
</li>
</ul>