aboutsummaryrefslogtreecommitdiffstats
path: root/config/mailreport
diff options
context:
space:
mode:
authorDaniel Hunsaker <danhunsaker@gmail.com>2014-01-08 10:38:55 -0700
committerDaniel Hunsaker <danhunsaker@gmail.com>2014-01-08 10:38:55 -0700
commit69aa04e749acad79a48efda5291b11f40e9d9a1f (patch)
treeb1398710677ee5265e61d6497cc48bedf9f3163d /config/mailreport
parent6e61f09defd4f204a7b982653d9c49c98ebbe648 (diff)
downloadpfsense-packages-69aa04e749acad79a48efda5291b11f40e9d9a1f.tar.gz
pfsense-packages-69aa04e749acad79a48efda5291b11f40e9d9a1f.tar.bz2
pfsense-packages-69aa04e749acad79a48efda5291b11f40e9d9a1f.zip
Resolved interface bugs preventing new frequencies from displaying properly
Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com>
Diffstat (limited to 'config/mailreport')
-rw-r--r--config/mailreport/status_mail_report_edit.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/config/mailreport/status_mail_report_edit.php b/config/mailreport/status_mail_report_edit.php
index 6572c370..0baa9aa6 100644
--- a/config/mailreport/status_mail_report_edit.php
+++ b/config/mailreport/status_mail_report_edit.php
@@ -258,7 +258,7 @@ include("head.inc");
<td class="vtable" colspan="3">
<select name="dayofmonth">
<?php foreach($dayofmonth as $dom): ?>
- <option value="<?php echo $dom; ?>" <?php if($pconfig["dayofmonth"] === $dom) echo "selected"; ?>><?php echo $dom; ?></option>
+ <option value="<?php echo $dom; ?>" <?php if($pconfig["dayofmonth"] == $dom) echo "selected"; ?>><?php echo $dom; ?></option>
<?php endforeach; ?>
</select>
<br/>Select the day of the month to send the report. Only valid for monthly and yearly reports.
@@ -270,8 +270,8 @@ include("head.inc");
<td class="vncell" valign="top" colspan="1">Time of Quarter</td>
<td class="vtable" colspan="3">
<select name="monthofquarter">
- <?php foreach($monthofquarter as $moq): ?>
- <option value="<?php echo $moq; ?>" <?php if($pconfig["monthofquarter"] === $moq) echo "selected"; ?>><?php echo $moq; ?></option>
+ <?php foreach($monthofquarter as $moqi => $moq): ?>
+ <option value="<?php echo $moqi; ?>" <?php if($pconfig["monthofquarter"] == $moqi) echo "selected"; ?>><?php echo $moq; ?></option>
<?php endforeach; ?>
</select>
<br/>Select the time of the quarter to send the report. Only valid for quarter reports.
@@ -283,8 +283,8 @@ include("head.inc");
<td class="vncell" valign="top" colspan="1">Month of the Year</td>
<td class="vtable" colspan="3">
<select name="monthofyear">
- <?php foreach($monthofyear as $moy): ?>
- <option value="<?php echo $moy; ?>" <?php if($pconfig["monthofyear"] === $moy) echo "selected"; ?>><?php echo $moy; ?></option>
+ <?php foreach($monthofyear as $moyi => $moy): ?>
+ <option value="<?php echo $moyi; ?>" <?php if($pconfig["monthofyear"] == $moyi) echo "selected"; ?>><?php echo $moy; ?></option>
<?php endforeach; ?>
</select>
<br/>Select the month of the year to send the report. Only valid for yearly reports.