diff --git a/Themes.php b/Themes.php index d9d6cbc..2ad9a42 100644 --- a/Themes.php +++ b/Themes.php @@ -236,7 +236,7 @@ public static function isExists() if (file_exists($configFile)) { require_once $configFile; - if (function_exists('themeConfig')) { + if (function_exists('_themeConfig')) { return true; } } @@ -254,7 +254,7 @@ public function config() { $form = new Typecho_Widget_Helper_Form($this->security->getIndex('/action/dynamics?do=configTheme'), Typecho_Widget_Helper_Form::POST_METHOD); - themeConfig($form); + _themeConfig($form); $inputs = $form->getInputs(); $themeConfig = $this->options->plugin("Dynamics")->themeConfig;