diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-11-03 00:06:15 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-11-03 00:06:15 +0100 |
commit | c793bb323f1c58c1fe3e82b09068e88c380f5c21 (patch) | |
tree | c9a3bc93501bc6b2e13f4a777a0515959ea17491 /collectstats.pl | |
parent | Bug 607581: URLs in the See Also field are not linkified when the user is log... (diff) | |
download | bugzilla-c793bb323f1c58c1fe3e82b09068e88c380f5c21.tar.gz bugzilla-c793bb323f1c58c1fe3e82b09068e88c380f5c21.tar.bz2 bugzilla-c793bb323f1c58c1fe3e82b09068e88c380f5c21.zip |
Bug 419014: (CVE-2010-3764) [SECURITY] Old charts are not project specific, and product names are viewable in graphs/
r=wurblzap a=LpSolit
Diffstat (limited to 'collectstats.pl')
-rwxr-xr-x | collectstats.pl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/collectstats.pl b/collectstats.pl index f5ba2ddab..f8ee89215 100755 --- a/collectstats.pl +++ b/collectstats.pl @@ -49,9 +49,12 @@ use Bugzilla::Field; # in the regenerate mode). $| = 1; +my $datadir = bz_locations()->{'datadir'}; +my $graphsdir = bz_locations()->{'graphsdir'}; + # Tidy up after graphing module my $cwd = Cwd::getcwd(); -if (chdir("graphs")) { +if (chdir($graphsdir)) { unlink <./*.gif>; unlink <./*.png>; # chdir("..") doesn't work if graphs is a symlink, see bug 429378 @@ -68,8 +71,6 @@ if ($#ARGV >= 0 && $ARGV[0] eq "--regenerate") { $regenerate = 1; } -my $datadir = bz_locations()->{'datadir'}; - # As we can now customize statuses and resolutions, looking at the current list # of legal values only is not enough as some now removed statuses and resolutions # may have existed in the past, or have been renamed. We want them all. |