projects
/
platal.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68f434e
)
Fixes addresses fetch for profile (Closes #1153).
author
Stéphane Jacob
<sj@m4x.org>
Thu, 24 Jun 2010 12:04:44 +0000
(14:04 +0200)
committer
Stéphane Jacob
<sj@m4x.org>
Thu, 24 Jun 2010 12:04:44 +0000
(14:04 +0200)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
include/profilefields.inc.php
patch
|
blob
|
blame
|
history
diff --git
a/include/profilefields.inc.php
b/include/profilefields.inc.php
index
6854079
..
80eb725
100644
(file)
--- a/
include/profilefields.inc.php
+++ b/
include/profilefields.inc.php
@@
-645,7
+645,7
@@
class ProfileAddresses extends ProfileField
}
while ($addr = $it->next()) {
- $this->addresses[
$addr['id']
] = new Address($addr);
+ $this->addresses[] = new Address($addr);
}
}