define(\'PHPWG_IN_UPGRADE\', true); if you want to upgrade'; die($message); } } // Create empty local files to avoid log errors function create_empty_local_files() { $files = array ( PHPWG_ROOT_PATH . 'template-common/local-layout.css', PHPWG_ROOT_PATH . 'template/yoga/local-layout.css' ); foreach ($files as $path) { if (!file_exists ($path)) { $file = @fopen($path, "w"); @fwrite($file , '/* You can modify this file */'); @fclose($file); } } } ?>