The branch, master has been updated via 13c3beb8ef72808818744aee2994bb3ae7528c5f (commit) via 268ad58ec2bef1d40f1e5b12ebef52e72e5a8276 (commit) from 409a1bee74487ab553b9a9dec54618f607122de3 (commit)
- Log ----------------------------------------------------------------- commit 13c3beb8ef72808818744aee2994bb3ae7528c5f Author: Michal Čihař michal@cihar.com Date: Mon Aug 15 17:53:12 2011 +0200
Fix references to selects
commit 268ad58ec2bef1d40f1e5b12ebef52e72e5a8276 Author: Michal Čihař michal@cihar.com Date: Mon Aug 15 17:49:26 2011 +0200
Fix HTML
-----------------------------------------------------------------------
Summary of changes: server_status.php | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/server_status.php b/server_status.php index a1db42a..7d6e62a 100644 --- a/server_status.php +++ b/server_status.php @@ -697,7 +697,7 @@ echo __('Runtime Information'); <?php echo __('Refresh'); ?> </a> <span class="refreshList" style="display:none;"> - <label for="trafficChartRefresh"><?php echo __('Refresh rate: '); ?></label> + <label for="id_trafficChartRefresh"><?php echo __('Refresh rate: '); ?></label> <?php refreshList('trafficChartRefresh'); ?> </span>
@@ -719,7 +719,7 @@ echo __('Runtime Information'); <?php echo __('Refresh'); ?> </a> <span class="refreshList" style="display:none;"> - <label for="queryChartRefresh"><?php echo __('Refresh rate: '); ?></label> + <label for="id_queryChartRefresh"><?php echo __('Refresh rate: '); ?></label> <?php refreshList('queryChartRefresh'); ?> </span> <a class="tabChart livequeriesLink" href="#"> @@ -1562,7 +1562,7 @@ function printMonitor() <input type="checkbox" id="useDivisor" name="useDivisor" value="1" /> <label for="useDivisor"><?php echo __('Apply a divisor'); ?></label> <span class="divisorInput" style="display:none;"> - <input type="text" name="valueDivisor" size="4" value="1"> + <input type="text" name="valueDivisor" size="4" value="1" /> (<a href="#kibDivisor"><?php echo __('KiB'); ?></a>, <a href="#mibDivisor"><?php echo __('MiB'); ?></a>) </span><br />
@@ -1570,7 +1570,7 @@ function printMonitor() <label for="useUnit"><?php echo __('Append unit to data values'); ?></label>
<span class="unitInput" style="display:none;"> - <input type="text" name="valueUnit" size="4" value=""> + <input type="text" name="valueUnit" size="4" value="" /> </span> <p> <a href="#submitAddSeries"><b><?php echo __('Add this series'); ?></b></a> @@ -1644,7 +1644,7 @@ function printMonitor() function refreshList($name, $defaultRate=5, $refreshRates=Array(1, 2, 5, 10, 20, 40, 60, 120, 300, 600)) { ?> - <select name="<?php echo $name; ?>"> + <select name="<?php echo $name; ?>" id="id_<?php echo $name; ?>"> <?php foreach ($refreshRates as $rate) { $selected = ($rate == $defaultRate)?' selected="selected"':'';
hooks/post-receive