Skip to content

Commit

Permalink
Revert "Emailing A family a pdf"
Browse files Browse the repository at this point in the history
This reverts commit ec5751c.
  • Loading branch information
DawoudIO committed Nov 29, 2014
1 parent ec5751c commit a56f014
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 386 deletions.
7 changes: 2 additions & 5 deletions churchinfo/LettersAndLabels.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
require "Include/Header.php";

// Is this the second pass?
if (isset($_POST["SubmitNewsLetter"]) || isset($_POST["SubmitConfirmReport"]) || isset($_POST["SubmitConfirmLabels"]) || isset($_POST["SubmitConfirmReportEmail"])) {
if (isset($_POST["SubmitNewsLetter"]) || isset($_POST["SubmitConfirmReport"]) || isset($_POST["SubmitConfirmLabels"])) {
$sLabelFormat = FilterInput($_POST['labeltype']);
$sFontInfo = $_POST["labelfont"];
$sFontSize = $_POST["labelfontsize"];
Expand All @@ -40,9 +40,7 @@
Redirect ("Reports/NewsLetterLabels.php?labeltype=" . $sLabelFormat.$sLabelInfo);
} else if (isset($_POST["SubmitConfirmReport"])) {
Redirect ("Reports/ConfirmReport.php");
} else if (isset($_POST["SubmitConfirmReportEmail"])) {
Redirect ("Reports/ConfirmReportEmail.php");
} else if (isset($_POST["SubmitConfirmLabels"])) {
} else if (isset($_POST["SubmitConfirmLabels"])) {
Redirect ("Reports/ConfirmLabels.php?labeltype=" . $sLabelFormat.$sLabelInfo);
}
} else {
Expand All @@ -63,7 +61,6 @@
<tr>
<td><input type="submit" class="icButton" name="SubmitNewsLetter" <?php echo 'value="' . gettext("Newsletter labels") . '"'; ?>></td>
<td><input type="submit" class="icButton" name="SubmitConfirmReport" <?php echo 'value="' . gettext("Confirm data letter") . '"'; ?>></td>
<td><input type="submit" class="icButton" name="SubmitConfirmReportEmail" <?php echo 'value="' . gettext("Confirm data Email") . '"'; ?>></td>
<td><input type="submit" class="icButton" name="SubmitConfirmLabels" <?php echo 'value="' . gettext("Confirm data labels") . '"'; ?>></td>
<td><input type="button" class="icButton" name="Cancel" <?php echo 'value="' . gettext("Cancel") . '"'; ?> onclick="javascript:document.location='Menu.php';"></td>
</tr>
Expand Down
Loading

0 comments on commit a56f014

Please sign in to comment.