mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
Fix missing sprintf() in page module
This commit is contained in:
parent
4d5401ef89
commit
e5ab366d91
2 changed files with 2 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ class pageMobile extends pageView
|
|||
}
|
||||
else
|
||||
{
|
||||
throw new Rhymix\Framework\Exception('%s method is not exists', $method);
|
||||
throw new Rhymix\Framework\Exception(sprintf('%s method is not exists', $method));
|
||||
}
|
||||
|
||||
Context::set('module_info', $this->module_info);
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class pageView extends page
|
|||
}
|
||||
else
|
||||
{
|
||||
throw new Rhymix\Framework\Exception('%s method is not exists', $method);
|
||||
throw new Rhymix\Framework\Exception(sprintf('%s method is not exists', $method));
|
||||
}
|
||||
|
||||
Context::set('module_info', $this->module_info);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue