summaryrefslogtreecommitdiffstats
path: root/usr/local/www/crash_reporter.php
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-07-31 10:03:34 -0300
committerRenato Botelho <renato@netgate.com>2015-07-31 10:03:34 -0300
commit5779ade6707ba530517da239d9ec3fc751d17d83 (patch)
tree9295a06ae80c1dd54611e7c279c42e3e242a6790 /usr/local/www/crash_reporter.php
parent6fed300c6ae8c5bcac03f867daf737e2676dcc30 (diff)
downloadpfsense-5779ade6707ba530517da239d9ec3fc751d17d83.zip
pfsense-5779ade6707ba530517da239d9ec3fc751d17d83.tar.gz
Introduce a new item to $g global, 'product_version' and stop reading /etc/version all around
Diffstat (limited to 'usr/local/www/crash_reporter.php')
-rw-r--r--usr/local/www/crash_reporter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/crash_reporter.php b/usr/local/www/crash_reporter.php
index 24cb36f..3b00e47 100644
--- a/usr/local/www/crash_reporter.php
+++ b/usr/local/www/crash_reporter.php
@@ -57,7 +57,7 @@ function upload_crash_report($files) {
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_USERAGENT, $g['product_name'] . '/' . rtrim(file_get_contents("/etc/version")));
+ curl_setopt($ch, CURLOPT_USERAGENT, $g['product_name'] . '/' . $g['product_version']);
curl_setopt($ch, CURLOPT_URL, $g['crashreporterurl']);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
OpenPOWER on IntegriCloud