|
@@ 151-153 (lines=3) @@
|
| 148 |
|
$endIndex = isset($stopIndex) ? $stopIndex : count($toList); |
| 149 |
|
if (! isset($stopIndex) || $stopIndex > 0) { |
| 150 |
|
$content .= '<p class="message good">This page has been successfully e-mailed to the following addresses :</p><ul>'; |
| 151 |
|
for ($i = 0; $i < $endIndex; $i++) { |
| 152 |
|
$content .= '<li>' . $toList[$i] . '</li>'; |
| 153 |
|
} |
| 154 |
|
$content .= '</ul>'; |
| 155 |
|
} |
| 156 |
|
if ($endIndex < count($toList)) { |
|
@@ 158-160 (lines=3) @@
|
| 155 |
|
} |
| 156 |
|
if ($endIndex < count($toList)) { |
| 157 |
|
$content .= '<p class="message required">This page could not be e-mailed to the following addresses :</p><ul>'; |
| 158 |
|
for ($i = $endIndex; $i < count($toList); $i++) { |
| 159 |
|
$content .= '<li>' . $toList[$i] . '</li>'; |
| 160 |
|
} |
| 161 |
|
$content .= '</ul>'; |
| 162 |
|
} |
| 163 |
|
} else { |