From fc2c9afdbca8b510bffb650a21f18c9f58cf45fe Mon Sep 17 00:00:00 2001 From: Tony Lambregts Date: Sat, 13 Aug 2005 01:54:15 +0000 Subject: [PATCH] Use the correct (non-capitalized) name for resolution --- include/bugs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bugs.php b/include/bugs.php index 5082e63..a76b467 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -52,7 +52,7 @@ class Bug { $oRow = mysql_fetch_object($hResult); $this->sShort_desc = $oRow->short_desc; $this->sBug_status = $oRow->bug_status; - $this->sResolution = $oRow->Resolution; + $this->sResolution = $oRow->resolution; } } }