added the fulldiff link in the code folder view

This commit is contained in:
hyung-hwan 2015-02-06 01:54:05 +00:00
parent 7b799a6f2a
commit da36c01a36

View File

@ -193,6 +193,7 @@ $this->load->view (
print '<th>' . $this->lang->line('Date') . '</th>';
print '<th>' . $this->lang->line('Blame') . '</th>';
print '<th>' . $this->lang->line('Difference') . '</th>';
print '<th>' . $this->lang->line('Full Difference') . '</th>';
print '</tr>';
$rowclasses = array ('even', 'odd');
@ -262,6 +263,11 @@ $this->load->view (
"code/diff/{$project->id}/{$hexpath}{$revreq}",
$this->lang->line('Difference'));
print '</td>';
print '<td>';
print anchor (
"code/fulldiff/{$project->id}/{$hexpath}{$revreq}",
$this->lang->line('Full Difference'));
print '</td>';
print '</tr>';
}
}