We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45b3d18 + 07193a5 commit 21a9cbfCopy full SHA for 21a9cbf
2 files changed
includes/plugin.php
@@ -18,6 +18,7 @@ class Plugin {
18
* @var object
19
*/
20
public static $instance = null;
21
+ public $data = array();
22
23
/** Magic Methods *********************************************************/
24
includes/post-types/contentsView.php
@@ -52,7 +52,7 @@ public function wp_enqueue_style()
52
public function isFolder($path)
53
{
54
$path_info = pathinfo($path);
55
- return $path_info['extension'] ? false : true;
+ return (isset($path_info['extension'])) ? false : true;
56
}
57
58
/**
0 commit comments