Skip to content

Commit

Permalink
normalised setTemplate (non-semantic change)
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketMan committed Jan 16, 2024
1 parent 8dddc90 commit d8dbd0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/Reviews.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function reviewsByDJ() {
$this->addVar("airname", $airname);
$this->addVar("key", $viewuser);
$this->tertiary = $airname;
$this->template = "search.reviews.html";
$this->setTemplate("search.reviews.html");
return;
}
}
Expand Down Expand Up @@ -446,7 +446,7 @@ public function editReview() {
$slack = Engine::param('slack');
$export = $slack && $slack['token'] && $slack['review_channel'];

$this->template = "review.edit.html";
$this->setTemplate("review.edit.html");
$this->addVar("id", $id ?? 0);
$this->addVar("album", $albums[0]);
$this->addVar("errorMessage", $errorMessage);
Expand Down

0 comments on commit d8dbd0c

Please sign in to comment.