From da36c01a36f395ed4ba4bd628168940ab9d5bbb3 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 6 Feb 2015 01:54:05 +0000 Subject: [PATCH] added the fulldiff link in the code folder view --- codepot/src/codepot/views/code_folder.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/codepot/src/codepot/views/code_folder.php b/codepot/src/codepot/views/code_folder.php index e0b53ba5..2f545e2f 100644 --- a/codepot/src/codepot/views/code_folder.php +++ b/codepot/src/codepot/views/code_folder.php @@ -193,6 +193,7 @@ $this->load->view ( print '' . $this->lang->line('Date') . ''; print '' . $this->lang->line('Blame') . ''; print '' . $this->lang->line('Difference') . ''; + print '' . $this->lang->line('Full Difference') . ''; print ''; $rowclasses = array ('even', 'odd'); @@ -262,6 +263,11 @@ $this->load->view ( "code/diff/{$project->id}/{$hexpath}{$revreq}", $this->lang->line('Difference')); print ''; + print ''; + print anchor ( + "code/fulldiff/{$project->id}/{$hexpath}{$revreq}", + $this->lang->line('Full Difference')); + print ''; print ''; } }