From c40a41ce0bf7793d417fb7684b9f061e6fc8cf7f Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Sat, 25 Jun 2011 01:30:13 +0000
Subject: [PATCH] Changed important SERVER_URL which now points to the right
 URL

---
 inc/databases.php                       | 2 +-
 inc/modules/admin/what-email_archiv.php | 2 +-
 inc/template-functions.php              | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/inc/databases.php b/inc/databases.php
index 6b84f3fbd8..4f011b75f4 100644
--- a/inc/databases.php
+++ b/inc/databases.php
@@ -82,7 +82,7 @@ addCode('PROFILE_UPDATED'    , 0x024);
 setConfigEntry('FULL_VERSION', '0.2.1-FINAL');
 
 // Server-URL (DO NOT CHANGE THIS OR YOU CANNOT CHECK FOR UPDATES/EXTENSIONS!)
-setConfigEntry('SERVER_URL', 'http://www.mxchange.org');
+setConfigEntry('SERVER_URL', 'http://mxchange.org');
 
 // One day
 setConfigEntry('ONE_DAY', (60*60*24));
diff --git a/inc/modules/admin/what-email_archiv.php b/inc/modules/admin/what-email_archiv.php
index d6338d6fe1..acab810fad 100644
--- a/inc/modules/admin/what-email_archiv.php
+++ b/inc/modules/admin/what-email_archiv.php
@@ -96,7 +96,7 @@ if (!SQL_HASZERONUMS($result)) {
 		SQL_FREERESULT($result_mails);
 
 		// Unconfirmed mails
-		$pool['unconfirmed'] = generateUnconfirmedAdminLink($pool['id'],  ($pool['max_rec'] - $pool['clicks']), 'mid');
+		$pool['unconfirmed'] = generateUnconfirmedAdminLink($pool['id'], ($pool['max_rec'] - $pool['clicks']), 'mid');
 
 		// Prepare data for the row template
 		$content['timestamp'] = generateDateTime($pool['timestamp'], 0);
diff --git a/inc/template-functions.php b/inc/template-functions.php
index a768c907f7..597c5be930 100644
--- a/inc/template-functions.php
+++ b/inc/template-functions.php
@@ -1343,7 +1343,7 @@ function linenumberCode ($code)    {
 		if ($count_lines == 1) {
 			$r .= 1;
 		} else {
-			$r .= ($line == ($count_lines - 1)) ? '' :  ($line+1);
+			$r .= ($line == ($count_lines - 1)) ? '' : ($line+1);
 		}
 		$r .= '</span>|';
 
-- 
2.39.5