• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/forum/comment.php
  • Класс: BitrixTasksIntegrationForumComment
  • Вызов: Comment::getUrlParameters
static function getUrlParameters($commentId)
{
	$result = array();

	$commentId = intval($commentId);
	if($commentId)
	{
		$result['MID'] = $commentId;
	}

	return $result;
}