Commit: 400e87a4be176c78a735cb741e2d399f21118679 Author: Rasmus Lerdorf <ras...@lerdorf.com> Tue, 7 Aug 2018 20:15:45 -0700 Parents: 48e585076c3225e385328305337e1ec551711d6a Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=400e87a4be176c78a735cb741e2d399f21118679 Log: Fix typo Changed paths: M www/js/userlisting.php Diff: diff --git a/www/js/userlisting.php b/www/js/userlisting.php index f79f046..1cafd62 100644 --- a/www/js/userlisting.php +++ b/www/js/userlisting.php @@ -27,7 +27,7 @@ function getAllUsers() return $json; } -if (!file_exists("/tmp/svnusers.json") || filemetime("/tmp/svnusers.json") < $_SERVER["REQUEST_TIME"] - 3600) { +if (!file_exists("/tmp/svnusers.json") || filemtime("/tmp/svnusers.json") < $_SERVER["REQUEST_TIME"] - 3600) { $json = getAllUsers(); $json_data = var_export($json, true); file_put_contents("/tmp/svnusers.php", '<?php $json = '.$json_data.';'); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php