Commit ef480e031e26827dbf6343f61d7bea98cfdc91ad
1 parent
31226a7d
Exists in
master
and in
66 other branches
Fix a bug in context for superpose mode
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/InputOutput/IHMImpl/Tools/IHMPlotContextFileClass.php
@@ -25,7 +25,7 @@ class IHMPlotContextFileClass { | @@ -25,7 +25,7 @@ class IHMPlotContextFileClass { | ||
25 | $pageContext = array( | 25 | $pageContext = array( |
26 | 'startTime' => $pageNode->getAttribute('startTime'), | 26 | 'startTime' => $pageNode->getAttribute('startTime'), |
27 | 'stopTime' => $pageNode->getAttribute('stopTime'), | 27 | 'stopTime' => $pageNode->getAttribute('stopTime'), |
28 | - 'superposeMode' => ($pageNode->getAttribute('stopTime') == "true"), | 28 | + 'superposeMode' => ($pageNode->getAttribute('superposeMode') == "true"), |
29 | 'ttName' => $pageNode->getAttribute('ttName'), | 29 | 'ttName' => $pageNode->getAttribute('ttName'), |
30 | 'ttIndex' => ($pageNode->getAttribute('ttIndex') == '') ? 0 : intval($pageNode->getAttribute('ttIndex')), | 30 | 'ttIndex' => ($pageNode->getAttribute('ttIndex') == '') ? 0 : intval($pageNode->getAttribute('ttIndex')), |
31 | 'ttNbIntervals' => ($pageNode->getAttribute('ttNbIntervals') == '') ? 0 : intval($pageNode->getAttribute('ttNbIntervals')), | 31 | 'ttNbIntervals' => ($pageNode->getAttribute('ttNbIntervals') == '') ? 0 : intval($pageNode->getAttribute('ttNbIntervals')), |