Skip to content

Commit

Permalink
Additional commit for CFM-338 (CFM-492)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Nov 20, 2025
1 parent 894b32a commit 3d82a0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/Controller/StandardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ public function edit(string $id) {
$archives = $table->find()
->applyOptions(['archived' => true])
->where([$clAttr => $id])
->order(['revision' => 'DESC'])
->orderBy(['revision' => 'DESC'])
->all();

$this->set('vv_archives', $archives);
Expand Down Expand Up @@ -840,7 +840,7 @@ public function view($id = null) {
$archives = $table->find()
->applyOptions(['archived' => true])
->where([$clAttr => $id])
->order(['revision' => 'DESC'])
->orderBy(['revision' => 'DESC'])
->all();

$this->set('vv_archives', $archives);
Expand Down

0 comments on commit 3d82a0b

Please sign in to comment.