mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
extra_vars viewer
This commit is contained in:
parent
816cc9f841
commit
4c4df273d1
2 changed files with 8 additions and 3 deletions
|
|
@ -1172,6 +1172,9 @@ class boardView extends board
|
|||
return new Object(-1, 'msg_not_permitted');
|
||||
}
|
||||
$update_log = $oDocumentModel->getUpdateLog($update_id);
|
||||
$extra_vars = unserialize($update_log->extra_vars);
|
||||
|
||||
Context::set('extra_vars', $extra_vars);
|
||||
Context::set('update_log', $update_log);
|
||||
|
||||
$this->setTemplateFile('update_view');
|
||||
|
|
|
|||
|
|
@ -13,15 +13,17 @@
|
|||
</span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- READ BODY -->
|
||||
<div class="read_body">
|
||||
{$update_log->content}
|
||||
</div>
|
||||
<div class="read_body">
|
||||
<p loop="$extra_vars=>$key=>$val">
|
||||
{$key} : {$val}
|
||||
</p>
|
||||
<p>
|
||||
{$lang->reason_update} :
|
||||
{$update_log->reason_update}
|
||||
</div>
|
||||
</p>
|
||||
<!-- /READ BODY -->
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue