Skip to content
Snippets Groups Projects

Issue #2707689: NodeForm::actions() checks for delete access on new entities

2 files
+ 59
1
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 981d266c
    Issue #3323353 by Lendude, ameymudras, VitaliyB98, xjm, andypost: View combine... · 981d266c
    Jess authored
    Issue #3323353 by Lendude, ameymudras, VitaliyB98, xjm, andypost: View combine filter operator "Is not equal to" use the same operator as "Is equal to"
@@ -133,7 +133,7 @@ public function validate() {
*/
public function opEqual($expression) {
$placeholder = $this->placeholder();
$operator = $this->getConditionOperator('LIKE');
$operator = $this->getConditionOperator($this->operator());
$this->query->addWhereExpression($this->options['group'], "$expression $operator $placeholder", [$placeholder => $this->value]);
}
Loading