Index: core/units/users/users_event_handler.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/units/users/users_event_handler.php (revision 16004) +++ core/units/users/users_event_handler.php (revision ) @@ -1149,6 +1149,10 @@ // this way we can have 2+ objects stating with same special, e.g. "u.login-sidebox" and "u.login-main" return USER_GUEST; } + elseif ( preg_match('/^(update|delete)/', $event->Special) ) { + // This way we can have 2+ objects stating with same special, e.g. "u.update-sidebox" and "u.update-profile". + return $this->Application->RecallVar('user_id'); + } return parent::getPassedID($event); }