* public/include/json-header.php:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@183237
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-04-23 Ryosuke Niwa <rniwa@webkit.org>
+
+ Build fix after r183232.
+
+ * public/include/json-header.php:
+
2015-04-23 Ryosuke Niwa <rniwa@webkit.org>
Perf dashboard should automatically detect regressions
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");