Passed
Push — master ( 805652...eccbd5 )
by Andreas
26:13
created
lib/midcom/core/privilege.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,8 @@
 block discarded – undo
124 124
         if ($this->__cached_object === null) {
125 125
             try {
126 126
                 $this->__cached_object = midcom::get()->dbfactory->get_object_by_guid($this->objectguid);
127
-            } catch (midcom_error $e) {
127
+            }
128
+            catch (midcom_error $e) {
128 129
                 return null;
129 130
             }
130 131
         }
Please login to merge, or discard this patch.
lib/net/nehmer/comments/midcom/interfaces.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,8 @@
 block discarded – undo
47 47
         if ($node_id) {
48 48
             try {
49 49
                 $comments_topic = new midcom_db_topic($node_id);
50
-            } catch (midcom_error $e) {
50
+            }
51
+            catch (midcom_error $e) {
51 52
                 return null;
52 53
             }
53 54
 
Please login to merge, or discard this patch.
lib/net/nehmer/blog/handler/index.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -409,7 +409,8 @@
 block discarded – undo
409 409
             foreach ($this->_articles as $article_counter => $article) {
410 410
                 try {
411 411
                     $data['datamanager']->set_storage($article);
412
-                } catch (midcom_error $e) {
412
+                }
413
+                catch (midcom_error $e) {
413 414
                     $e->log();
414 415
                     continue;
415 416
                 }
Please login to merge, or discard this patch.
lib/midcom/helper/imagefilter.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -386,7 +386,8 @@
 block discarded – undo
386 386
                 debug_add("EXIF information missing or without orientation tag. Skipping.", MIDCOM_LOG_INFO);
387 387
                 return;
388 388
             }
389
-        } catch (Exception $e) {
389
+        }
390
+        catch (Exception $e) {
390 391
             debug_add("Could not read EXIF data: " . $e->getMessage() . ", skipping.", MIDCOM_LOG_WARN);
391 392
             return;
392 393
         }
Please login to merge, or discard this patch.
lib/midcom/services/rcs/main.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,8 @@
 block discarded – undo
64 64
         try {
65 65
             $backend->update($message);
66 66
             return true;
67
-        } catch (midcom_error $e) {
67
+        }
68
+        catch (midcom_error $e) {
68 69
             debug_add('RCS: Could not save file!');
69 70
             $e->log();
70 71
             return false;
Please login to merge, or discard this patch.
lib/midcom/services/rcs/backend/rcs.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,9 +50,11 @@
 block discarded – undo
50 50
         $filepath = $this->generate_filename();
51 51
         try {
52 52
             $this->exec('co -q -f -r' . escapeshellarg(trim($revision)) . " {$filepath} 2>/dev/null");
53
-        } catch (midcom_error $e) {
53
+        }
54
+        catch (midcom_error $e) {
54 55
             $e->log();
55
-        } finally {
56
+        }
57
+        finally {
56 58
             if (!file_exists($filepath)) {
57 59
                 return [];
58 60
             }
Please login to merge, or discard this patch.
lib/midcom/helper/misc.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@
 block discarded – undo
55 55
     {
56 56
         try {
57 57
             return eval("return [{$data}\n];");
58
-        } catch (ParseError $e) {
58
+        }
59
+        catch (ParseError $e) {
59 60
             throw new midcom_error('Failed to parse config data: ' . $e->getMessage() . ' in ' . $path . ' line ' . $e->getLine());
60 61
         }
61 62
     }
Please login to merge, or discard this patch.
lib/net/nemein/tag/handler.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -371,7 +371,8 @@  discard block
 block discarded – undo
371 371
                 $tag = new net_nemein_tag_tag_dba($link->tag);
372 372
 
373 373
                 $tags[$tag->tag] = $link->value;
374
-            } catch (midcom_error $e) {
374
+            }
375
+            catch (midcom_error $e) {
375 376
                 $e->log();
376 377
             }
377 378
         }
@@ -427,7 +428,8 @@  discard block
 block discarded – undo
427 428
             try {
428 429
                 $tag = net_nemein_tag_tag_dba::get_cached($link->tag);
429 430
                 $link_object_map[$link->fromGuid][$tag->tag] = $link;
430
-            } catch (midcom_error $e) {
431
+            }
432
+            catch (midcom_error $e) {
431 433
                 $e->log();
432 434
             }
433 435
         }
@@ -456,7 +458,8 @@  discard block
 block discarded – undo
456 458
                     $tmpobject = midcom::get()->dbfactory->convert_midgard_to_midcom($tmpobject);
457 459
                 }
458 460
                 $return[] = $tmpobject;
459
-            } catch (midcom_error $e) {
461
+            }
462
+            catch (midcom_error $e) {
460 463
                 $e->log();
461 464
             }
462 465
         }
Please login to merge, or discard this patch.
lib/midgard/admin/user/style/midgard-admin-user-group-folders.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,8 @@
 block discarded – undo
17 17
         foreach ($data['objects'] as $guid => $privs) {
18 18
             try {
19 19
                 $object = new midcom_db_topic($guid);
20
-            } catch (midcom_error $e) {
20
+            }
21
+            catch (midcom_error $e) {
21 22
                 continue;
22 23
             }
23 24
             echo "<tr>\n";
Please login to merge, or discard this patch.