Austin English : include/bugs.php: don't exclude RESOLVED FIXED bugs
Module: appdb Branch: master Commit: 822908762fa0e5950f626ed27df520f6d5dc50e3 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=822908762fa0e5950f626ed27... Author: Austin English <austinenglish(a)gmail.com> Date: Wed Dec 23 01:31:57 2015 -0600 include/bugs.php: don't exclude RESOLVED FIXED bugs This code was written before RESOLVED FIXED bugs started being closed on a regular basis. Given that the bugs are now closed with every release, bugs that aren't yet fixed in the latest release should be visible to users looking at applications. Originally reported by Rosanne Dimesio here: https://www.winehq.org/pipermail/wine-devel/2015-September/109432.html Signed-off-by: Austin English <austinenglish(a)gmail.com> Signed-off-by: Jeremy Newman <jnewman(a)codeweavers.com> --- include/bugs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bugs.php b/include/bugs.php index d933b7c..63853d7 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -370,7 +370,7 @@ class Bug function isOpen() { - return ($this->sBug_status != 'RESOLVED' && $this->sBug_status != 'CLOSED'); + return ($this->sBug_status != 'CLOSED'); } function allowAnonymousSubmissions()
participants (1)
-
Jeremy Newman