diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-04-26 13:42:55 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-04-26 13:42:55 +0200 |
commit | fb2f6bd8ca4ed8879f82a2764d63d51a06670477 (patch) | |
tree | ba20382558ba25b21f56f40704e03acd76b7306a /showdependencygraph.cgi | |
parent | Bug 745751: Remove support for microsummaries (diff) | |
download | bugzilla-fb2f6bd8ca4ed8879f82a2764d63d51a06670477.tar.gz bugzilla-fb2f6bd8ca4ed8879f82a2764d63d51a06670477.tar.bz2 bugzilla-fb2f6bd8ca4ed8879f82a2764d63d51a06670477.zip |
Bug 747189: Remove Bugzilla::Util::file_mod_time()
r/a=LpSolit
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 32abf1747..842e12f2a 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -296,7 +296,7 @@ foreach my $f (@files) # symlinks), this can't escape to delete anything it shouldn't # (unless someone moves the location of $webdotdir, of course) trick_taint($f); - my $mtime = file_mod_time($f); + my $mtime = (stat($f))[9]; if ($mtime && $mtime < $since) { unlink $f; } |