Only add in the additional metadata if we are also adding them to the form
[civicrm-core.git] / CRM / Core / LegacyErrorHandler.php
index b10026ac6b908fb5784282e288c9e450a644aaf9..ae0f1f9859351ac4be8a127edc2003fb2676b575 100644 (file)
@@ -1,11 +1,15 @@
 <?php
 
+/**
+ * Class CRM_Core_LegacyErrorHandler
+ */
 class CRM_Core_LegacyErrorHandler {
+
   /**
    * @param \Civi\Core\Event\UnhandledExceptionEvent $event
    * @throws Exception
    */
-  static function handleException($event) {
+  public static function handleException($event) {
     $e = $event->exception;
     if ($e instanceof CRM_Core_Exception) {
       $params = $e->getErrorData();
@@ -23,6 +27,7 @@ class CRM_Core_LegacyErrorHandler {
       // you should log a ticket for it to be removed with details about the form you were on.
       if (!empty($params['legacy_redirect_path'])) {
         if (CRM_Utils_System::isDevelopment()) {
+          $intentionalENotice = "How did you get HERE?! - Please log in JIRA";
           // here we could set a message telling devs to log it per above
         }
         CRM_Utils_System::redirect($params['legacy_redirect_path'], $params['legacy_redirect_query']);