fix: [decaying] typo 4

pull/5032/head
mokaddem 2019-09-12 11:46:12 +02:00
parent 09742c253f
commit 1a5ab3e79e
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ abstract class DecayingModelBase
public function computeBasescore($model, $attribute)
{
$temp = $this->__getPrioritizedTag($attribute);
$temp = $this->__getPrioritisedTag($attribute);
$tags = $temp['tags'];
$overridden_tags = $temp['overridden'];
$taxonomy_effective_ratios = $this->__getRatioScore($model, $tags);

View File

@ -30,7 +30,7 @@ class PolynomialExtended extends Polynomial
$score = parent::computeScore($model, $attribute, $base_score, $elapsed_time);
// handle `retention` taxonomy tags
$temp = $this->__getPrioritizedTag($attribute);
$temp = $this->__getPrioritisedTag($attribute);
$tags = $temp['tags'];
foreach ($tags as $tag) {
$tagname = $tag['Tag']['name'];