Title: [183237] trunk/Websites/perf.webkit.org
Revision
183237
Author
[email protected]
Date
2015-04-23 20:06:55 -0700 (Thu, 23 Apr 2015)

Log Message

Build fix after r183232.

* public/include/json-header.php:

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (183236 => 183237)


--- trunk/Websites/perf.webkit.org/ChangeLog	2015-04-24 03:03:48 UTC (rev 183236)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2015-04-24 03:06:55 UTC (rev 183237)
@@ -1,5 +1,11 @@
 2015-04-23  Ryosuke Niwa  <[email protected]>
 
+        Build fix after r183232.
+
+        * public/include/json-header.php:
+
+2015-04-23  Ryosuke Niwa  <[email protected]>
+
         Perf dashboard should automatically detect regressions
         https://bugs.webkit.org/show_bug.cgi?id=141443
 

Modified: trunk/Websites/perf.webkit.org/public/include/json-header.php (183236 => 183237)


--- trunk/Websites/perf.webkit.org/public/include/json-header.php	2015-04-24 03:03:48 UTC (rev 183236)
+++ trunk/Websites/perf.webkit.org/public/include/json-header.php	2015-04-24 03:06:55 UTC (rev 183237)
@@ -116,7 +116,7 @@
 function compute_token() {
     if (!array_key_exists('CSRFSalt', $_COOKIE) || !array_key_exists('CSRFExpiration', $_COOKIE))
         return NULL;
-    $user = remote_user_name();
+    $user = remote_user_name(array());
     $salt = $_COOKIE['CSRFSalt'];
     $expiration = $_COOKIE['CSRFExpiration'];
     return hash('sha256', "$salt|$user|$expiration");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to