@@ -409,7 +409,8 @@ |
||
409 | 409 | //Get the parent object |
410 | 410 | try { |
411 | 411 | $parent = midcom::get()->dbfactory->get_object_by_guid($this->objectguid); |
412 | - } catch (midcom_error $e) { |
|
412 | + } |
|
413 | + catch (midcom_error $e) { |
|
413 | 414 | $e->log(); |
414 | 415 | return; |
415 | 416 | } |
@@ -95,7 +95,8 @@ |
||
95 | 95 | org_openpsa_projects_workflow::accept($task, 0, $this->comment); |
96 | 96 | return; |
97 | 97 | } |
98 | - } catch (midcom_error $e) { |
|
98 | + } |
|
99 | + catch (midcom_error $e) { |
|
99 | 100 | $e->log(); |
100 | 101 | } |
101 | 102 | } |
@@ -197,7 +197,8 @@ |
||
197 | 197 | if ($this->_response === null) { |
198 | 198 | $this->_stop('Could not handle request, unknown method', 405); |
199 | 199 | } |
200 | - } catch (midcom_error $e) { |
|
200 | + } |
|
201 | + catch (midcom_error $e) { |
|
201 | 202 | $this->_responseStatus = $e->getCode(); |
202 | 203 | return $this->_send_response($e->getMessage()); |
203 | 204 | } |
@@ -165,7 +165,8 @@ |
||
165 | 165 | try { |
166 | 166 | self::$root_topic = midcom_db_topic::get_cached($guid); |
167 | 167 | return self::$root_topic; |
168 | - } catch (midcom_error $e) { |
|
168 | + } |
|
169 | + catch (midcom_error $e) { |
|
169 | 170 | if ($e instanceof midcom_error_forbidden) { |
170 | 171 | throw $e; |
171 | 172 | } |
@@ -673,7 +673,8 @@ |
||
673 | 673 | */ |
674 | 674 | try { |
675 | 675 | return $object->get_by_id($object->id); |
676 | - } catch (Exception $e) { |
|
676 | + } |
|
677 | + catch (Exception $e) { |
|
677 | 678 | return false; |
678 | 679 | } |
679 | 680 | } |
@@ -80,7 +80,8 @@ |
||
80 | 80 | |
81 | 81 | try { |
82 | 82 | require $basedir . $file; |
83 | - } catch (\midcom_error_forbidden $e) { |
|
83 | + } |
|
84 | + catch (\midcom_error_forbidden $e) { |
|
84 | 85 | $dialog = $this->getHelperSet()->get('question'); |
85 | 86 | $this->login($dialog, $input, $output); |
86 | 87 | require $basedir . $file; |
@@ -72,7 +72,8 @@ |
||
72 | 72 | $component = key($watch); |
73 | 73 | try { |
74 | 74 | $interface = $this->loader->get_interface_class($component); |
75 | - } catch (\midcom_error $e) { |
|
75 | + } |
|
76 | + catch (\midcom_error $e) { |
|
76 | 77 | debug_add("Failed to load the component {$component}: " . $e->getMessage(), MIDCOM_LOG_INFO); |
77 | 78 | continue; |
78 | 79 | } |
@@ -99,7 +99,8 @@ |
||
99 | 99 | if ($request->request->has('midcom_helper_datamanager2_save')) { |
100 | 100 | try { |
101 | 101 | $rules = $this->_load_rules($request); |
102 | - } catch (midcom_error $e) { |
|
102 | + } |
|
103 | + catch (midcom_error $e) { |
|
103 | 104 | midcom::get()->uimessages->add('org.openpsa.directmarketing', $this->_l10n->get($e->getMessage()), 'error'); |
104 | 105 | return; |
105 | 106 | } |
@@ -45,7 +45,8 @@ |
||
45 | 45 | break; |
46 | 46 | } |
47 | 47 | } |
48 | - } catch (midcom_error $e) { |
|
48 | + } |
|
49 | + catch (midcom_error $e) { |
|
49 | 50 | } |
50 | 51 | |
51 | 52 | $path_parts = array_reverse($path_parts); |