Title: [193530] trunk/Websites/webkit.org
Revision
193530
Author
[email protected]
Date
2015-12-05 13:17:45 -0800 (Sat, 05 Dec 2015)

Log Message

Fix a 404 error when the site loads via www.webkit.org.

* wp-content/themes/webkit/status.php:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (193529 => 193530)


--- trunk/Websites/webkit.org/ChangeLog	2015-12-05 19:54:45 UTC (rev 193529)
+++ trunk/Websites/webkit.org/ChangeLog	2015-12-05 21:17:45 UTC (rev 193530)
@@ -1,3 +1,9 @@
+2015-12-05  Timothy Hatcher  <[email protected]>
+
+        Fix a 404 error when the site loads via www.webkit.org.
+
+        * wp-content/themes/webkit/status.php:
+
 2015-12-04  Timothy Hatcher  <[email protected]>
 
         Fix toggling so hidden links are not clickable still.

Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/status.php (193529 => 193530)


--- trunk/Websites/webkit.org/wp-content/themes/webkit/status.php	2015-12-05 19:54:45 UTC (rev 193529)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/status.php	2015-12-05 21:17:45 UTC (rev 193530)
@@ -28,7 +28,7 @@
         xhrRequest.send();
     });
 }
-var origin = new URL("https://<?php echo WP_HOST == "webkit.org" ? "svn.webkit.org" : WP_HOST; ?>/");
+var origin = new URL("https://<?php echo WP_HOST == "webkit.org" || WP_HOST == "www.webkit.org" ? "svn.webkit.org" : WP_HOST; ?>/");
 var loadJavaScriptCoreFeatures = xhrPromise(new URL("/repository/webkit/trunk/Source/_javascript_Core/features.json", origin));
 var loadWebCoreFeatures = xhrPromise(new URL("/repository/webkit/trunk/Source/WebCore/features.json", origin));
 </script>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to