From 70d84874e0ccf6e5726f45153011a2bc0389084e Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sun, 22 May 2011 01:24:45 +1000 Subject: [PATCH] updated themes to use new file_write() function --- templates/homepage/basic/theme.php | 2 +- templates/homepage/frameset/theme.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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