Opened 3 years ago
Closed 3 years ago
#2065 closed Defect (fixed)
coding error in serialize_array_to_xml
| Reported by: | coldtrick | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | Elgg 1.7.1 |
| Component: | Core | Version: | 1.7 |
| Severity: | major | Keywords: | |
| Cc: | brettp | Difficulty: |
Description
In
engine/lib/xml.php line:113
i think the line
$output = "</array>\n";
should be
$output .= "</array>\n"; (i added a dot :)
Change History (2)
comment:1 Changed 3 years ago by cash
- Milestone changed from Elgg 1.8 to Elgg 1.7.1
- Type changed from unconfirmed defect to confirmed defect
comment:2 Changed 3 years ago by cash
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

(In [svn:5769]) Fixes #2065 - added missed .