diff --git a/templates/homepage/basic/theme.php b/templates/homepage/basic/theme.php index 5782d63d..5b086852 100644 --- a/templates/homepage/basic/theme.php +++ b/templates/homepage/basic/theme.php @@ -16,7 +16,7 @@ global $config; if($action == 'all' || $action == 'news') - file_put_contents($config['dir']['home'] . $config['file_index'], Basic::homepage($settings)); + file_write($config['dir']['home'] . $config['file_index'], Basic::homepage($settings)); } // Build news page diff --git a/templates/homepage/frameset/theme.php b/templates/homepage/frameset/theme.php index 90af409c..6aa126c8 100644 --- a/templates/homepage/frameset/theme.php +++ b/templates/homepage/frameset/theme.php @@ -16,13 +16,13 @@ global $config; if($action == 'all') - file_put_contents($config['dir']['home'] . $config['file_index'], Frameset::homepage($settings)); + file_write($config['dir']['home'] . $config['file_index'], Frameset::homepage($settings)); if($action == 'all' || $action == 'boards') - file_put_contents($config['dir']['home'] . 'sidebar.html', Frameset::sidebar($settings)); + file_write($config['dir']['home'] . 'sidebar.html', Frameset::sidebar($settings)); if($action == 'all' || $action == 'news') - file_put_contents($config['dir']['home'] . 'news.html', Frameset::news($settings)); + file_write($config['dir']['home'] . 'news.html', Frameset::news($settings)); } // Build homepage