Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fusiondirectory
fusiondirectory
Commits
2c04c9e8
Commit
2c04c9e8
authored
Nov 19, 2014
by
Côme Bernigaud
Committed by
Benoit Mortier
Nov 20, 2014
Browse files
OrderedAttributes should support html code in columns
parent
0b5c0f23
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/simpleplugin/class_attribute.inc
View file @
2c04c9e8
...
...
@@ -2423,7 +2423,11 @@ class OrderedArrayAttribute extends SetAttribute
foreach
(
$this
->
value
as
$key
=>
$value
)
{
$fields
=
array
();
foreach
(
$this
->
getAttributeArrayValue
(
$value
)
as
$field
)
{
$fields
[]
=
array
(
"string"
=>
$field
);
if
(
is_array
(
$field
))
{
$fields
[]
=
$field
;
}
else
{
$fields
[]
=
array
(
'string'
=>
$field
);
}
}
list
(
$img
,
$width
)
=
$this
->
genRowIcons
(
$key
,
$value
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment