Skip to content

Commit

Permalink
Rework Allow option to declare our expressions with the # sign
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarcec007 committed Sep 14, 2021
1 parent c0684ab commit 4fc476d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Convo/Pckg/Trivia/TriviaScoresReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ public function read(\Convo\Core\Workflow\IConvoRequest $request, \Convo\Core\Wo
}
}

public function evaluateString( $string, $context=[], $useHashtagSign = false) {
public function evaluateString( $string, $context=[]) {
$own_params = $this->getService()->getAllComponentParams( $this);
return parent::evaluateString( $string, array_merge( $own_params, $context), $useHashtagSign);
return parent::evaluateString( $string, array_merge( $own_params, $context));
}

private function _getUsers()
Expand Down

0 comments on commit 4fc476d

Please sign in to comment.