diff --git a/main/inc/lib/skill.lib.php b/main/inc/lib/skill.lib.php index 78585c68f1..b63e15e19d 100755 --- a/main/inc/lib/skill.lib.php +++ b/main/inc/lib/skill.lib.php @@ -32,7 +32,7 @@ class SkillProfile extends Model $sql = "SELECT * FROM $this->table p INNER JOIN $this->table_rel_profile sp ON(p.id = sp.profile_id) "; - $result = Database::query($sql); + $result = Database::query($sql); $profiles = Database::store_result($result, 'ASSOC'); return $profiles; @@ -47,7 +47,11 @@ class SkillProfile extends Model */ public function updateProfileInfo($profileId, $name, $description) { - $profileId = intval($profileId); + $profileId = (int) $profileId; + + if (empty($profileId)) { + return false; + } $name = Database::escape_string($name); $description = Database::escape_string($description); @@ -720,16 +724,21 @@ class Skill extends Model /** * @param $skills - * @param string $imageSize + * @param string $imageSize mini|small|big * @param string $style + * @param bool $showBadge + * @param bool $showTitle + * * @return string */ - public function processSkillListSimple($skills, $imageSize = '', $style = '') + public function processSkillListSimple($skills, $imageSize = '', $style = '', $showBadge = true, $showTitle = true) { if (empty($skills)) { return ''; } + $isHierarchicalTable = api_get_configuration_value('table_of_hierarchical_skill_presentation'); + if (empty($imageSize)) { $imageSize = 'img_small'; } else { @@ -737,30 +746,36 @@ class Skill extends Model } $html = ''; - $html .= '