Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
civitas-digitalis
platform
Commits
1aa3b925
Commit
1aa3b925
authored
Jan 23, 2018
by
Elias Englmeier
Browse files
fixed map bug
parent
af2f238c
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/MapModule/bin/MapModule/portlet/MapModulePortlet.class
View file @
1aa3b925
No preview for this file type
modules/MapModule/src/main/java/MapModule/portlet/MapModulePortlet.java
View file @
1aa3b925
...
...
@@ -68,8 +68,7 @@ public class MapModulePortlet extends MVCPortlet {
//case guest user
result
=
JSONFactoryUtil
.
looseSerializeDeep
(
IdeasLocalServiceUtil
.
getIdeasByUserRoleProjectId
(
RoleConstants
.
GUEST
,
-
1
,
projectId
));
}
System
.
out
.
println
(
result
);
if
(
result
.
equals
(
null
)
||
result
.
equals
(
""
)){
if
(
result
.
equals
(
null
)
||
result
.
equals
(
""
)
||
result
.
equals
(
"[]"
)){
//at least return all accepted ideas in any case
result
=
JSONFactoryUtil
.
looseSerializeDeep
(
IdeasLocalServiceUtil
.
getAllAccpetedIdeas
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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