diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-08-25 02:42:57 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-08-25 02:42:57 +0000 |
commit | 686f642a445d94983b2c6f33bff3b3fa89beb675 (patch) | |
tree | 751a710314d26e862ecaad643c874ea33664a8dd | |
parent | c2fce0344b3809c96b74c92e6ea2a79ca9872002 (diff) | |
download | pfsense-packages-686f642a445d94983b2c6f33bff3b3fa89beb675.tar.gz pfsense-packages-686f642a445d94983b2c6f33bff3b3fa89beb675.tar.bz2 pfsense-packages-686f642a445d94983b2c6f33bff3b3fa89beb675.zip |
* Silence eclipse warning
* Pay proper attribution to Paul Taylor (update (C))
-rw-r--r-- | packages/diag_states_pt/diag_new_states.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/diag_states_pt/diag_new_states.php b/packages/diag_states_pt/diag_new_states.php index cede2075..75d46d69 100644 --- a/packages/diag_states_pt/diag_new_states.php +++ b/packages/diag_states_pt/diag_new_states.php @@ -1,7 +1,7 @@ <?php /* diag_dump_states.php - Copyright (C) 2005 Scott Ullrich, Colin Smith + Copyright (C) 2006 Paul Taylor All rights reserved. Redistribution and use in source and binary forms, with or without @@ -321,16 +321,16 @@ include("head.inc"); <td class="listr"><a href="?new=1<?=$filterPassThru;?>">Start new</a></td> <td class="listr"><a href="?clear=1">Clear snapshot</a></td> <td class="listr" colspan="5" align="right">Last statistics snapshot: <?=$lastSnapshot;?></td> - <?php endif ?> + <?php endif; ?> <?php if (($lastSnapshot!='Never') && (isset($_GET['view']))) :?> <td class="listlr"><a href="?new=1<?=$filterPassThru;?>">Start new</a></td> <td class="listr"><a href="?clear=1">Clear</a></td> <td class="listr" colspan="6" align="right"><span class="red">Viewing delta of statistics snapshot: <?=$lastSnapshot;?></span></td> - <?php endif ?> + <?php endif; ?> <?php if ($lastSnapshot=='Never') :?> <td class="listlr"><a href="?new=1<?=$filterPassThru;?>">Start new</a></td> <td class="listr" colspan="7" align="right">Last statistics snapshot: <?=$lastSnapshot;?></td> - <?php endif ?> + <?php endif; ?> </tr> <tr> <td colspan="8"> </td> |