From 2390464e0e93a4c42665bdc0cab4079d14a83954 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 3 Apr 2017 15:14:55 +0000 Subject: [PATCH] fixed a octet stream handling bug in the code file view --- codepot/src/codepot/views/code_file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codepot/src/codepot/views/code_file.php b/codepot/src/codepot/views/code_file.php index d14bd91e..bbac7e70 100644 --- a/codepot/src/codepot/views/code_file.php +++ b/codepot/src/codepot/views/code_file.php @@ -11,7 +11,7 @@ $is_special_stream = FALSE; if (array_key_exists('properties', $file) && count($file['properties']) > 0) { - $octet_stream = TRUE; + $octet_stream = FALSE; foreach ($file['properties'] as $pn => $pv) { if ($pn == 'svn:mime-type')