diff --git a/CHANGELOG b/CHANGELOG
index 5bdf8fb18..64ade1f03 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,3 @@
-Please check http://www.observium.org/wiki/Changelog for an up to date changelog.
+A summary changelog will be provided in future.
-You can also browse the subversion repository commit logs for more granular updates.
\ No newline at end of file
+For now, please see the git commit logs at https://github.com/librenms/librenms/commits/master
diff --git a/html/pages/bill/pdf_history.inc.php b/html/pages/bill/pdf_history.inc.php
index b02f862ee..66c4f0b23 100644
--- a/html/pages/bill/pdf_history.inc.php
+++ b/html/pages/bill/pdf_history.inc.php
@@ -217,7 +217,7 @@
}
// Html template
- $logo = $pdf->serializeTCPDFtagParameters(array('images/observium-logo.png', 15, 18, 100, '', '', 'www.observium.org', 'T'));
+ $logo = $pdf->serializeTCPDFtagParameters(array('images/dummy-logo.png', 15, 18, 100, '', '', 'www.example.com', 'T'));
$html .= "";
$html .= "
Billing Report
";
$html .= "";
diff --git a/html/pdf.php b/html/pdf.php
index a092f66ee..b4306a341 100644
--- a/html/pdf.php
+++ b/html/pdf.php
@@ -54,7 +54,7 @@ class ObsPDF extends TCPDF
// Set Font
$this->SetFont('helvetica', 'N', 8);
// Set Footer text
- $this->Cell(0, 0, 'Created by Observium (www.observium.org)', 0, false, 'L', 0, 'http://www.observium.org/', 0, false, 'M', 'M');
+ $this->Cell(0, 0, 'Created by '.$config['project_name'], 0, false, 'L', 0, $config['project_url'], 0, false, 'M', 'M');
$this->Cell(10, 0, 'Page '.$this->getAliasNumPAge().' of '.$this->getAliasNbPages(), 0, false, 'R', 0, '', 0, false, 'M', 'M');
}
}
diff --git a/includes/defaults.inc.php b/includes/defaults.inc.php
index be295f32f..6fcdc23b1 100644
--- a/includes/defaults.inc.php
+++ b/includes/defaults.inc.php
@@ -99,6 +99,7 @@ if (isset($_SERVER["SERVER_NAME"]) && isset($_SERVER["SERVER_PORT"]))
}
$config['project_name'] = "LibreNMS";
+$config['project_url'] = "https://github.com/librenms/";
$config['title_image'] = "";
$config['stylesheet'] = "css/styles.css";
$config['mono_font'] = "DejaVuSansMono";
diff --git a/includes/versioncheck.inc.php b/includes/versioncheck.inc.php
index a91f26413..abf8e83db 100644
--- a/includes/versioncheck.inc.php
+++ b/includes/versioncheck.inc.php
@@ -16,7 +16,7 @@ foreach (dbFetch("SELECT COUNT(*) AS count,os from devices group by `os`") as $d
$stat_serial = base64_encode(serialize($stats));
-$url = "http://www.observium.org/latest.php?i=".$stats['ports']."&d=".$stats['devices']."&stats=".$stat_serial."&v=".$config['version'];
+#$url = "http://www.observium.org/latest.php?i=".$stats['ports']."&d=".$stats['devices']."&stats=".$stat_serial."&v=".$config['version'];
#$dataHandle = fopen($url, r);
if ($dataHandle)