Skip to content
Snippets Groups Projects
Commit 5aac3c3f authored by Tim Steiner's avatar Tim Steiner
Browse files

Add May 2010 to the list of UCC Reports.

parent b1a40975
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,10 @@
<?php
for ($startDate = clone $this->startDate; $startDate->isEarlier($this->endDate); $startDate->addMonth(1)) {
if (in_array($startDate->get(Zend_Date::MONTH), array(5,6,7,8))) {
continue;
// Add an exception for May 2010.
if (!($startDate->get(Zend_Date::YEAR) == 2010 && $startDate->get(Zend_Date::MONTH) == 5)) {
continue;
}
}
?>
<li>
......@@ -23,7 +26,10 @@
<?php
for ($startDate = clone $this->startDate; $startDate->isEarlier($this->endDate); $startDate->addMonth(1)) {
if (in_array($startDate->get(Zend_Date::MONTH), array(5,6,7,8))) {
continue;
// Add an exception for May 2010.
if (!($startDate->get(Zend_Date::YEAR) == 2010 && $startDate->get(Zend_Date::MONTH) == 5)) {
continue;
}
}
?>
<li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment