diff --git a/templates/homepage/basic/theme.php b/templates/homepage/basic/theme.php index 6a6f0bfa..401d3f5a 100644 --- a/templates/homepage/basic/theme.php +++ b/templates/homepage/basic/theme.php @@ -25,15 +25,16 @@ // Unique function name for building everything $theme['build_function'] = 'basic_build'; - function basic_build($action, $settings) { - // Possible values for $action: - // - all (rebuild everything, initialization) - // - news (news has been updated) - // - boards (board list changed) - - Basic::build($action, $settings); + if(!function_exists('basic_build')) { + function basic_build($action, $settings) { + // Possible values for $action: + // - all (rebuild everything, initialization) + // - news (news has been updated) + // - boards (board list changed) + + Basic::build($action, $settings); + } } - // Wrap functions in a class so they don't interfere with normal Tinyboard operations class Basic { public static function build($action, $settings) { diff --git a/templates/homepage/frameset/theme.php b/templates/homepage/frameset/theme.php index 6c82f0b1..ff81608a 100644 --- a/templates/homepage/frameset/theme.php +++ b/templates/homepage/frameset/theme.php @@ -28,13 +28,15 @@ Users never have to leave the homepage; they can do all their browsing from the // Unique function name for building everything $theme['build_function'] = 'frameset_build'; - function frameset_build($action, $settings) { - // Possible values for $action: - // - all (rebuild everything, initialization) - // - news (news has been updated) - // - boards (board list changed) - - Frameset::build($action, $settings); + if(!function_exists('frameset_build')) { + function frameset_build($action, $settings) { + // Possible values for $action: + // - all (rebuild everything, initialization) + // - news (news has been updated) + // - boards (board list changed) + + Frameset::build($action, $settings); + } } // Wrap functions in a class so they don't interfere with normal Tinyboard operations