summaryrefslogtreecommitdiffstats
path: root/pts-core/pts-merge-results.php
diff options
context:
space:
mode:
Diffstat (limited to 'pts-core/pts-merge-results.php')
-rw-r--r--pts-core/pts-merge-results.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pts-core/pts-merge-results.php b/pts-core/pts-merge-results.php
index 11235c6..5094551 100644
--- a/pts-core/pts-merge-results.php
+++ b/pts-core/pts-merge-results.php
@@ -25,7 +25,7 @@ if(empty($MERGE_TO))
{
$rand_file = rand(1000, 9999);
$MERGE_TO = "merge-$rand_file/";
- }while(is_dir(SAVE_RESULTS_LOCATION . $MERGE_TO));
+ }while(is_dir(SAVE_RESULTS_DIR . $MERGE_TO));
$MERGE_TO .= "composite.xml";
}
@@ -33,6 +33,6 @@ if(empty($MERGE_TO))
// Merge Results
$MERGED_RESULTS = pts_merge_benchmarks(file_get_contents($BASE_FILE), file_get_contents($MERGE_FROM_FILE));
pts_save_result($MERGE_TO, $MERGED_RESULTS);
-display_web_browser(SAVE_RESULTS_LOCATION . $MERGE_TO);
+display_web_browser(SAVE_RESULTS_DIR . $MERGE_TO);
?>