mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Fix unmatched %s in sprintf()
This commit is contained in:
parent
1f2f0d87ef
commit
53c296d1a1
1 changed files with 1 additions and 1 deletions
|
|
@ -1899,7 +1899,7 @@ class documentController extends document
|
|||
{
|
||||
$oCommunicationController = getController('communication');
|
||||
$message_title = lang('document.declared_cancel_message_title');
|
||||
$message_content = sprintf('<p><a href="%s">%s</a></p><p>%s</p>', $oDocument->getPermanentUrl(), $oDocument->getTitleText());
|
||||
$message_content = sprintf('<p><a href="%s">%s</a></p>', $oDocument->getPermanentUrl(), $oDocument->getTitleText());
|
||||
foreach ($message_targets as $target_member_srl => $val)
|
||||
{
|
||||
$oCommunicationController->sendMessage($this->user->member_srl, $target_member_srl, $message_title, $message_content, false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue