Completed
Push — develop ( 2d809e...4b580b )
by Aristeides
03:12
created
core/class-kirki-modules.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
 		foreach ( self::$modules as $key => $module_class ) {
88 88
 			if ( class_exists( $module_class ) ) {
89
-				self::$active_modules[ $key ] = $module_class::get_instance();
89
+				self::$active_modules[$key] = $module_class::get_instance();
90 90
 			}
91 91
 		}
92 92
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
 		$key = array_search( $module, self::$modules, true );
122 122
 		if ( false !== $key ) {
123
-			unset( self::$modules[ $key ] );
123
+			unset( self::$modules[$key] );
124 124
 		}
125 125
 	}
126 126
 
Please login to merge, or discard this patch.