Bugfix
git-svn-id: https://svn.libreccm.org/ccm/trunk@6093 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
3a89139105
commit
6b6138ab07
|
|
@ -299,7 +299,7 @@ public class SciProjectList extends AbstractComponent {
|
||||||
projectBeginElem.addAttribute("year", Integer.toString(projectBegin
|
projectBeginElem.addAttribute("year", Integer.toString(projectBegin
|
||||||
.get(Calendar.YEAR)));
|
.get(Calendar.YEAR)));
|
||||||
projectBeginElem.addAttribute("month", Integer.toString(projectBegin
|
projectBeginElem.addAttribute("month", Integer.toString(projectBegin
|
||||||
.get(Calendar.MONTH)));
|
.get(Calendar.MONTH) + 1));
|
||||||
projectBeginElem.addAttribute(
|
projectBeginElem.addAttribute(
|
||||||
"month-name",
|
"month-name",
|
||||||
projectBegin.getDisplayName(Calendar.MONTH,
|
projectBegin.getDisplayName(Calendar.MONTH,
|
||||||
|
|
@ -328,7 +328,7 @@ public class SciProjectList extends AbstractComponent {
|
||||||
projectEndElem.addAttribute("year", Integer.toString(projectEnd
|
projectEndElem.addAttribute("year", Integer.toString(projectEnd
|
||||||
.get(Calendar.YEAR)));
|
.get(Calendar.YEAR)));
|
||||||
projectEndElem.addAttribute("month", Integer.toString(projectEnd
|
projectEndElem.addAttribute("month", Integer.toString(projectEnd
|
||||||
.get(Calendar.MONTH)));
|
.get(Calendar.MONTH) + 1));
|
||||||
projectEndElem.addAttribute(
|
projectEndElem.addAttribute(
|
||||||
"month-name",
|
"month-name",
|
||||||
projectEnd.getDisplayName(Calendar.MONTH,
|
projectEnd.getDisplayName(Calendar.MONTH,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue