зеркало из https://github.com/microsoft/git.git
gitweb: Fix bug in git_difftree_body (was '!=' instead of 'ne')
Fix bug in git_difftree_body subroutine; it was used '!=' comparison operator for strings (file type) instead of correct 'ne'. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
9c9410e115
Коммит
6e72cf43a7
|
@ -2274,7 +2274,7 @@ sub git_difftree_body {
|
|||
my $mode_chnge = "";
|
||||
if ($diff{'from_mode'} != $diff{'to_mode'}) {
|
||||
$mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
|
||||
if ($from_file_type != $to_file_type) {
|
||||
if ($from_file_type ne $to_file_type) {
|
||||
$mode_chnge .= " from $from_file_type to $to_file_type";
|
||||
}
|
||||
if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче