X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FTemporaryErrorScope.php;h=7f78496083669e2401bf87956ff5f15ca1da4b90;hb=b7801a459edcc9c5570df3469e93f8da56340de4;hp=6ab382b1d0c136765b60e5d6a7fd8de5632981a0;hpb=7d86179d7d8e91160bbb5e6643fa265198a99a2d;p=civicrm-core.git diff --git a/CRM/Core/TemporaryErrorScope.php b/CRM/Core/TemporaryErrorScope.php index 6ab382b1d0..7f78496083 100644 --- a/CRM/Core/TemporaryErrorScope.php +++ b/CRM/Core/TemporaryErrorScope.php @@ -79,10 +79,13 @@ class CRM_Core_TemporaryErrorScope { /** * Set the active error-handler settings + * + * @param string $frame */ public static function setActive($frame) { $GLOBALS['_PEAR_default_error_mode'] = $frame['_PEAR_default_error_mode']; $GLOBALS['_PEAR_default_error_options'] = $frame['_PEAR_default_error_options']; CRM_Core_Error::$modeException = $frame['modeException']; } + }