Skip to content

Commit

Permalink
Fix: array to string error
Browse files Browse the repository at this point in the history
  • Loading branch information
HFO4 committed Mar 16, 2019
1 parent 822d9b4 commit bf2f5e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/index/view/admin/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h2>离线下载</h2>
{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>
Expand Down

0 comments on commit bf2f5e6

Please sign in to comment.