mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +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');
|
return new Object(-1, 'msg_not_permitted');
|
||||||
}
|
}
|
||||||
$update_log = $oDocumentModel->getUpdateLog($update_id);
|
$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);
|
Context::set('update_log', $update_log);
|
||||||
|
|
||||||
$this->setTemplateFile('update_view');
|
$this->setTemplateFile('update_view');
|
||||||
|
|
|
||||||
|
|
@ -13,15 +13,17 @@
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- READ BODY -->
|
<!-- READ BODY -->
|
||||||
<div class="read_body">
|
<div class="read_body">
|
||||||
{$update_log->content}
|
{$update_log->content}
|
||||||
</div>
|
</div>
|
||||||
<div class="read_body">
|
<p loop="$extra_vars=>$key=>$val">
|
||||||
|
{$key} : {$val}
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
{$lang->reason_update} :
|
{$lang->reason_update} :
|
||||||
{$update_log->reason_update}
|
{$update_log->reason_update}
|
||||||
</div>
|
</p>
|
||||||
<!-- /READ BODY -->
|
<!-- /READ BODY -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue