Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
fleur
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
52
Issues
52
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
fleur
fleur
Commits
2d82178b
Commit
2d82178b
authored
Oct 07, 2016
by
Gregor Michalicek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a missing case for a subroutine in io/xmlOutput.F90
parent
dd2e78bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
io/xmlOutput.F90
io/xmlOutput.F90
+3
-1
No files found.
io/xmlOutput.F90
View file @
2d82178b
...
...
@@ -350,7 +350,9 @@ MODULE m_xmlOutput
END
IF
ALLOCATE
(
contentLineList
(
contentLineListSize
))
CALL
fillContentLineList
(
contentList
,
contentLineList
,
contentLineLength
)
IF
(
contentLineListSize
.LE.
1
)
THEN
IF
(
contentLineListSize
.EQ.
0
)
THEN
outputString
=
TRIM
(
ADJUSTL
(
outputString
))//
'> </'
//
TRIM
(
ADJUSTL
(
elementName
))//
'>'
ELSE
IF
(
contentLineListSize
.EQ.
1
)
THEN
outputString
=
TRIM
(
ADJUSTL
(
outputString
))//
'>'
//
TRIM
(
ADJUSTL
(
contentLineList
(
1
)))//
'</'
//&
TRIM
(
ADJUSTL
(
elementName
))//
'>'
ELSE
...
...
Write
Preview
Markdown
is supported
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