Minor - format code.

1.9.x
Julio Montoya 11 years ago
parent 36f895a7e8
commit 8866307764
  1. 2
      main/admin/system_announcements.php
  2. 8
      main/inc/lib/message.lib.php

@ -189,7 +189,7 @@ if ($action_todo) {
$values['lang'] = null;
}
if (api_get_setting('wcag_anysurfer_public_pages') == 'true') {
$values['content'] = WCAG_Rendering::text_to_HTML($values['content']);
//$values['content'] = WCAG_Rendering::text_to_HTML($values['content']);
}
switch ($values['action']) {
case 'add':

@ -313,7 +313,13 @@ class MessageManager
$sender_info = api_get_user_info($user_sender_id);
if (empty($group_id)) {
$notification->save_notification(Notification::NOTIFICATION_TYPE_MESSAGE, array($receiver_user_id), $subject, $content, $sender_info);
$notification->save_notification(
Notification::NOTIFICATION_TYPE_MESSAGE,
array($receiver_user_id),
$subject,
$content,
$sender_info
);
} else {
$group_info = GroupPortalManager::get_group_data($group_id);
$group_info['topic_id'] = $topic_id;

Loading…
Cancel
Save