commit 82703def42e2e8b7a27f237ce275c3a8993eaa24 Author: fago Date: Mon Jul 22 18:52:01 2013 +0200 Fixed owner to be set correctly. diff --git a/includes/rules.core.inc b/includes/rules.core.inc index b2c9463..2c2e074 100644 --- a/includes/rules.core.inc +++ b/includes/rules.core.inc @@ -1099,7 +1099,7 @@ abstract class RulesPlugin extends RulesExtendable { // @todo: For Drupal 8 use "owner" for generating machine names also and // module only for the modules providing default configurations. $this->module = !isset($this->module) || $module != 'rules' ? $module : $this->module; - $this->owner = !isset($this->owner) || $module != 'rules' ? $module : $this->module; + $this->owner = !isset($this->owner) || $module != 'rules' ? $module : $this->owner; $this->ensureNameExists(); $this->data = $this; $return = entity_get_controller('rules_config')->save($this);