switch to sponsor repo

Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
diff --git a/content/en_download.php b/content/en_download.php
index 7c1aa34..16ba432 100644
--- a/content/en_download.php
+++ b/content/en_download.php
@@ -207,7 +207,7 @@
   <div class="sideitem">
     <h6>Related Links</h6>
     <ul>
-      <li><a href="/donate/">Donate</a></li>
+      <li><a href="/sponsor/">Sponsor</a></li>
       <li><a href="mir_request.php">Becoming a mirror site</a></li>
       <li><a href="https://help.eclipse.org/2020-06/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/tasks-129.htm">Updating and installing Eclipse components</a></li>
       <li><a href="/forums/">Eclipse forums</a></li>
diff --git a/content/en_thankyou.php b/content/en_thankyou.php
index d82563e..c5a8d43 100644
--- a/content/en_thankyou.php
+++ b/content/en_thankyou.php
@@ -47,4 +47,4 @@
 $variables['main_container_classes'] = 'container-full';
 $App->setThemeVariables($variables);
 $App->AddExtraHtmlHeader('<link rel="stylesheet" href="/downloads/assets/public/stylesheets/thankyou.min.css"/>');
-include_once($_SERVER['DOCUMENT_ROOT'] . "/donate/content/en_index.php");
\ No newline at end of file
+include_once($_SERVER['DOCUMENT_ROOT'] . "/sponsor/content/en_index.php");
\ No newline at end of file
diff --git a/download.php b/download.php
index 5111c94..6dfddd2 100755
--- a/download.php
+++ b/download.php
@@ -276,7 +276,7 @@
     # 2008-07-31: broke down the SQL in two different queries
     # using left joins for the download_file_index took .55 sec, two queries uses < .15 sec
 
-    # q1: get file info from slave 
+    # q1: get file info from slave
     $sql = "SELECT /* downnload.php lowest_drop */ IDX.file_id, IDX.timestamp_disk, IF(IDX.md5sum = '0', '', IDX.md5sum) AS md5sum, IF(IDX.sha1sum = '0', '', IDX.sha1sum) AS sha1sum, IF(IDX.sha512sum = '0', '', IDX.sha512sum) AS sha512sum FROM download_file_index AS IDX WHERE IDX.file_name = '$_file' ORDER BY file_id asc LIMIT 1";
     if($_debug == 1) {
         echo $sql . "<br />";