summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-merge.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-08-14 22:02:08 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-08-14 22:02:08 -0400
commit5650ac0f6e909998177fe910ba63635f94f55fe1 (patch)
treee7e685f7a87cbc6a8823fdcb8e7c2b4beb70a8b4 /pts-core/functions/pts-functions-merge.php
parent7e022a0fc905e4bf87a032d47e3304099628f6c3 (diff)
downloadphoronix-test-suite-upstream-5650ac0f6e909998177fe910ba63635f94f55fe1.tar.gz
phoronix-test-suite-upstream-5650ac0f6e909998177fe910ba63635f94f55fe1.tar.xz
phoronix-test-suite-upstream-5650ac0f6e909998177fe910ba63635f94f55fe1.zip
pts-core: Fix for analyze option text string
Diffstat (limited to 'pts-core/functions/pts-functions-merge.php')
-rw-r--r--pts-core/functions/pts-functions-merge.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/pts-core/functions/pts-functions-merge.php b/pts-core/functions/pts-functions-merge.php
index a723c35..6087bfd 100644
--- a/pts-core/functions/pts-functions-merge.php
+++ b/pts-core/functions/pts-functions-merge.php
@@ -380,7 +380,7 @@ function pts_merge_batch_tests_to_line_comparison($RESULT)
{
if(!$has_merged)
{
- $similar_attributes_text = implode(" - ", $similar_attributes);
+ $similar_attributes_text_add = implode(" - ", $similar_attributes);
$test_attribute = array_pop($r_o_test_attributes);
$r_o_test_attributes_1 = explode(":", $test_attribute);
@@ -388,8 +388,8 @@ function pts_merge_batch_tests_to_line_comparison($RESULT)
{
$similar_attributes_text = trim($r_o_test_attributes_1[0]) . " Analysis";
- if(!empty($similar_attributes_text))
- $similar_attributes_text .= " [" . $similar_attributes_text . "]";
+ if(!empty($similar_attributes_text_add))
+ $similar_attributes_text .= " [" . $similar_attributes_text_add . "]";
}
$USE_ID = pts_request_new_id();