1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

and once more with feeling

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9303 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2009-01-26 16:56:43 +00:00
parent 0fc07b96ce
commit 4b176e6ca7

View File

@@ -511,9 +511,9 @@ class diff3 extends diff
if ($edit->is_conflict())
{
// Start conflict label
$label_start = array('<<< ' . $label1);
$label_mid = array('=== ' . $label_sep);
$label_end = array('>>> ' . $label2);
$label_start = array('<<<<<<< ' . $label1);
$label_mid = array('======= ' . $label_sep);
$label_end = array('>>>>>>> ' . $label2);
$lines = array_merge($lines, $label_start, $edit->final1, $label_mid, $edit->final2, $label_end);
}