Skip to content

Commit

Permalink
task: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
kingjia90 authored and dvesh3 committed May 8, 2023
1 parent 5e9428c commit 603a019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/AdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function favoriteOutputDefinitionsAction(Request $request)
$list = new FavoriteOutputDefinition\Listing();
$list->setOrder('asc');
$list->setOrderKey('description');
$condition = 'o_classId = ' . $request->get('classId');
$condition = 'o_classId = ' . $list->quote($request->get('classId'));
$list->setCondition($condition);

$definitions = [];
Expand Down

0 comments on commit 603a019

Please sign in to comment.