diff options
author | Tatsuo Ishii | 2010-08-18 05:18:25 +0000 |
---|---|---|
committer | Tatsuo Ishii | 2010-08-18 05:18:25 +0000 |
commit | a72fcd62d1124f41df483c744ef276db39712d3b (patch) | |
tree | 4bcc38bfdc52b00d9c507f63697fdff82e44cb72 | |
parent | f5ac32a3766c3fe6feae2ace8fcfb346ae4b8088 (diff) |
Fix connect/disconnect buttons disappering ini node status window.
-rw-r--r-- | nodeStatus.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nodeStatus.php b/nodeStatus.php index 4a5af3c..88c487e 100644 --- a/nodeStatus.php +++ b/nodeStatus.php @@ -67,8 +67,6 @@ for($i=0; $i<$nodeCount; $i++) { /* node is active? */ if ($nodeInfo[$i][2] != 3) $node_alive = true; - - $nodeInfo[$i][5] = NodeStandby($i); } for ($i = 0; $i < $nodeCount; $i++) { @@ -103,6 +101,7 @@ for ($i = 0; $i < $nodeCount; $i++) { break; } } + $nodeInfo[$i][5] = NodeStandby($i); } $tpl->assign('refreshTime', _PGPOOL2_STATUS_REFRESH_TIME*1000); |