summaryrefslogtreecommitdiff
path: root/addon/download.php
diff options
context:
space:
mode:
authorpca <pca@6c8d7289-2bf4-0310-a012-ef5d649a1542>2011-04-30 19:32:07 +0000
committerpca <pca@6c8d7289-2bf4-0310-a012-ef5d649a1542>2011-04-30 19:32:07 +0000
commit5e2d38ef190a69c49862a3669e0693f422105ebe (patch)
treeb4b300f7dbaad30f28450e7d1b0da82d1efae561 /addon/download.php
parent4e8fa03514985e97444d2aef6912928beb787251 (diff)
Windows Installer:
- fix for firewall Vista/Win7 - update to JRE 1.6 u25 - TODO: fix for firewall WinXP and setting for uPnP (Port 1900) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7689 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'addon/download.php')
-rw-r--r--addon/download.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/addon/download.php b/addon/download.php
index 4d91f636c..e1c902fb3 100644
--- a/addon/download.php
+++ b/addon/download.php
@@ -17,12 +17,12 @@ $_GET['yacyrevnr'] not used yet
if ($_GET['what'] == 'jre') {
if($_GET['version'] == 32)
- // jre-6u24-windows-i586.exe
- header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=47364');
+ // jre-6u25-windows-i586.exe
+ header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=48343');
if($_GET['version'] == 64)
- // jre-6u24-windows-x64.exe
- header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=47155');
+ // jre-6u25-windows-x64.exe
+ header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=48346');
}