Skip to content
This repository was archived by the owner on Sep 14, 2021. It is now read-only.

Commit 33ff74a

Browse files
committed
bugfix
1 parent edd9f4f commit 33ff74a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

kirki-controls.php

+1
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ function kirki_controls() {
2929
return Kirki_Controls_Bootstrap::get_instance();
3030
}
3131
}
32+
kirki_controls();

php/class-kirki-controls-bootstrap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ protected function autoload( $class_name ) {
170170
if ( 0 === stripos( $class_name, 'Kirki_Control_' ) || 0 === stripos( $class_name, 'Kirki_Settings_' ) ) {
171171

172172
// Build the file-path.
173-
$path = wp_normalize_path( dirname( __FILE__ ) . '/php/class-' . strtolower( str_replace( '_', '-', $class_name ) ) . '.php' );
173+
$path = wp_normalize_path( dirname( __FILE__ ) . '/class-' . strtolower( str_replace( '_', '-', $class_name ) ) . '.php' );
174174
if ( file_exists( $path ) ) {
175175
include_once $path;
176176
}

0 commit comments

Comments
 (0)