Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
3738407c
Commit
3738407c
authored
10 years ago
by
srosse
Browse files
Options
Downloads
Plain Diff
Merge OpenOLAT 10.2 to OpenOLAT default branch with 18c0697360150e41d6c1f5ddd8e5e6cf44658496
parents
e73a0047
faebb770
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/olat/modules/iq/IQComponentRenderer.java
+3
-3
3 additions, 3 deletions
src/main/java/org/olat/modules/iq/IQComponentRenderer.java
with
3 additions
and
3 deletions
src/main/java/org/olat/modules/iq/IQComponentRenderer.java
+
3
−
3
View file @
3738407c
...
...
@@ -310,8 +310,8 @@ public class IQComponentRenderer implements ComponentRenderer {
StringOutput
sb
=
new
StringOutput
();
sb
.
append
(
"<td>"
);
String
title
=
StringHelper
.
escapeHtml
(
itc
.
getEl_item
().
attributeValue
(
"title"
,
"no title"
)
)
;
String
titleShort
=
StringHelper
.
escapeHtml
(
Formatter
.
truncate
(
title
,
27
));
String
title
NotEscaped
=
itc
.
getEl_item
().
attributeValue
(
"title"
,
"no title"
);
String
titleShort
=
StringHelper
.
escapeHtml
(
Formatter
.
truncate
(
title
NotEscaped
,
27
));
long
maxdur
=
itc
.
getDurationLimit
();
long
start
=
itc
.
getTimeOfStart
();
long
due
=
start
+
maxdur
;
...
...
@@ -332,7 +332,7 @@ public class IQComponentRenderer implements ComponentRenderer {
sb
.
append
(
"<a onclick=\"return o2cl();\" href=\""
);
ubu
.
buildURI
(
sb
,
new
String
[]
{
VelocityContainer
.
COMMAND_ID
},
new
String
[]
{
"git"
});
sb
.
append
(
"?itid="
+
itemPos
+
"&seid="
+
sectionPos
);
sb
.
append
(
"\" class=\"o_sel_qti_menu_item\" title=\""
+
StringEscapeUtils
.
escapeHtml
(
title
)
+
"\">"
);
sb
.
append
(
"\" class=\"o_sel_qti_menu_item\" title=\""
+
StringEscapeUtils
.
escapeHtml
(
title
NotEscaped
)
+
"\">"
);
}
sb
.
append
(
"<b>"
+
(
sectionPos
+
1
)
+
"."
+
(
itemPos
+
1
)
+
".</b> "
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment