Completed
Push — master ( c86703...8997f4 )
by Askupa
02:59 queued 01:12
created
handler.php 1 patch
Braces   +11 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,8 +37,9 @@  discard block
 block discarded – undo
37 37
             if( !key_exists( $handle, $this->notifications ) )
38 38
             {
39 39
                 $this->notifications[$handle] = $options;
40
+            } else {
41
+                trigger_error( "The handle <strong>$handle</strong> has already been registered. Please choose a different handle for your notification." );
40 42
             }
41
-            else trigger_error( "The handle <strong>$handle</strong> has already been registered. Please choose a different handle for your notification." );
42 43
         }
43 44
         
44 45
         public function render_notifications()
@@ -53,7 +54,9 @@  discard block
 block discarded – undo
53 54
         {
54 55
             foreach( $this->notifications as $handle => $notification )
55 56
             {
56
-                if( $notification['network'] ) $this->render_notification( $handle, $notification );
57
+                if( $notification['network'] ) {
58
+                    $this->render_notification( $handle, $notification );
59
+                }
57 60
             }
58 61
         }
59 62
         
@@ -91,12 +94,16 @@  discard block
 block discarded – undo
91 94
             add_action( 'wp_ajax_dismiss_admin_notification', array( $this, 'dismiss_notification' ) );
92 95
             add_action( 'admin_head', array( $this, 'render_script' ) );
93 96
             $this->dismissed_notices = get_option('wp_dismissed_notices');
94
-            if( false === $this->dismissed_notices ) $this->dismissed_notices = array();
97
+            if( false === $this->dismissed_notices ) {
98
+                $this->dismissed_notices = array();
99
+            }
95 100
         }
96 101
         
97 102
         private function render_notification( $id, $n )
98 103
         {
99
-            if( in_array( $id, $this->dismissed_notices ) ) return;
104
+            if( in_array( $id, $this->dismissed_notices ) ) {
105
+                return;
106
+            }
100 107
             
101 108
             printf( 
102 109
                 '<div id="%s" class="notice notice-%s %s%s"><p>%s</p></div>',
Please login to merge, or discard this patch.