diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-15 03:25:53 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-15 03:25:53 -0400 |
commit | 4bd2c2ad72e61868a201d7ac58db9a0d7ce4a59f (patch) | |
tree | dc64be01da947bfc148eed90b0b1259cb26349f4 | |
parent | 7334add15620b1cd2ee1d6df4bb8eb55c08657fd (diff) |
misused instance attribute in noticewrapper
darcs-hash:20080915072553-84dde-6de01a486dfcf3440643584d1f698fe1b188f351.gz
-rw-r--r-- | lib/noticewrapper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/noticewrapper.php b/lib/noticewrapper.php index 0d65f1da0..42ebdc9f9 100644 --- a/lib/noticewrapper.php +++ b/lib/noticewrapper.php @@ -47,7 +47,7 @@ class NoticeWrapper { if ($this->i >= count($notices)) { return false; } else { - $n = $notices[$this->i]; + $n = $this->notices[$this->i]; foreach ($fields as $f) { $this->$f = $n->$f; } |