<p><b>ringler@lanl.gov</b> 2010-04-30 13:50:59 -0600 (Fri, 30 Apr 2010)</p><p><br>
file changed: src/core_ocean/module_time_integration.F<br>
<br>
reason: fixed compile error due to missing &quot;then&quot; on &quot;elseif&quot; statements<br>
</p><hr noshade><pre><font color="gray">Modified: branches/lateral_boundary_conditions/src/core_ocean/module_time_integration.F
===================================================================
--- branches/lateral_boundary_conditions/src/core_ocean/module_time_integration.F        2010-04-30 19:39:48 UTC (rev 231)
+++ branches/lateral_boundary_conditions/src/core_ocean/module_time_integration.F        2010-04-30 19:50:59 UTC (rev 232)
@@ -581,11 +581,11 @@
             do k=1,nVertLevels
                h_edge(k,iEdge) = 0.5 * (h(k,cell1) + h(k,cell2))
             end do
-         elseif(cell1 &lt;= nCells)
+         elseif(cell1 &lt;= nCells) then
             do k=1,nVertLevels
                h_edge(k,iEdge) = h(k,cell1)
             end do
-         elseif(cell2 &lt;= nCells)
+         elseif(cell2 &lt;= nCells) then
             do k=1,nVertLevels
                h_edge(k,iEdge) = h(k,cell2)
             end do

</font>
</pre>