Hope this helps...
The limiting code is in include/MVC/Controller/SugarController.php
Code:
public function pre_save(){
if(!empty($_POST['assigned_user_id']) && $_POST['assigned_user_id'] != $this->bean->assigned_user_id && $_POST['assigned_user_id']
!= $GLOBALS['current_user']->id && empty($GLOBALS['sugar_config']['exclude_notifications'][$this->bean->module_dir])){
$this->bean->notify_on_save = true;
}
$GLOBALS['log']->debug("SugarController:: performing pre_save.");
.... I have been trying to come up with a way to auto assign bugs & cases in a before_save logic hook with no success because of this.
Bookmarks