• Модуль: forum
  • Путь к файлу: ~/bitrix/modules/forum/classes/general/points.php
  • Класс: CAllForumPoints
  • Вызов: CAllForumPoints::GetLangByID
static function GetLangByID($POINTS_ID, $strLang)
{
	global $DB;

	$POINTS_ID = intval($POINTS_ID);
	$strSql =
		"SELECT FRL.POINTS_ID, FRL.LID, FRL.NAME ".
		"FROM b_forum_points_lang FRL ".
		"WHERE FRL.POINTS_ID = ".$POINTS_ID." ".
		"	AND FRL.LID = '".$DB->ForSql($strLang)."' ";
	$db_res = $DB->Query($strSql, false, "File: ".__FILE__."
Line: ".__LINE__); if ($res = $db_res->Fetch()) { return $res; } return False; }