Opened 19 months ago
Closed 18 months ago
#4075 closed Defect (fixed)
Custom Selects in elgg_get_entities not possible
| Reported by: | coldtrick | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Elgg 1.7.15 |
| Component: | Core | Version: | 1.7 |
| Severity: | critical | Keywords: | |
| Cc: | brett@… | Difficulty: |
Description
custom selects as passed in $options are not possible because the concatenation fails.
engine/lib/entities line 1855
$selects = ", $select";
should be
$selects .= ", $select";
Not in 1.8 only in 1.7
Change History (2)
comment:1 Changed 18 months ago by cash
- Milestone changed from Needs Review to Elgg 1.7.15
comment:2 Changed 18 months ago by cash
- Resolution set to fixed
- Status changed from new to closed
Fixes #4075 corrected custom select code in ege - thanks to coldtrick
Changeset: b56340655c1ee6d726fe74174a2f14b3f94a0d57
Note: See
TracTickets for help on using
tickets.

thanks for the report!