Merge pull request #142 from HFO4/dev

Fix: array to string error
This commit is contained in:
AaronLiu 2019-03-16 14:13:34 +08:00 committed by GitHub
commit 51f8be8681
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,7 @@
{volist name='list' id='download'}
<tr id="i-{$download.id}" data-pid="{$download.pid}">
<th scope="row" class="textCenter">{$download.id}</th>
<td>{:$originList[$key]['fileName']}</td>
<td>{:is_array($originList[$key]['fileName'])?"未知":$originList[$key]['fileName']}</td>
<td class="textCenter">{:$originList[$key]['user']["user_nick"]}</td>
<td class="textCenter">{:countSize($download.total_size)}</td>
<td class="textCenter">{$download.status}</td>