Differences From Artifact [f035747052]:

To Artifact [f8fa22feff]:


725
726
727
728
729
730
731
732
733
734
735
736
737
738

		foreach ($list as $row)
		{
			$return = call_user_func_array('Garradin\\Plugin\\' . $row->callback, [&$params, &$return]);

			if ($return)
			{
				return $return;
			}
		}

		return !empty($list) ? true : null;
	}
}







|



|


725
726
727
728
729
730
731
732
733
734
735
736
737
738

		foreach ($list as $row)
		{
			$return = call_user_func_array('Garradin\\Plugin\\' . $row->callback, [&$params, &$return]);

			if ($return)
			{
				return true;
			}
		}

		return !empty($list) ? false : null;
	}
}