function getOrthodoxEaster($date)
{
/*
Takes any Gregorian date and returns the Gregorian
date of Orthodox Easter for that year.
*/
$year = date("Y", $date);
$r1 = $year % 19;
$r2 = $year % 4;
$r3 = $year % 7;
$ra = 19 * $r1 + 16;
$r4 = $ra % 30;
$rb = 2 * $r2 + 4 * $r3 + 6 * $r4;
$r5 = $rb % 7;
$rc = $r4 + $r5;
//Orthodox Easter for this year will fall $rc days after April 3
return strtotime("3 April $year + $rc days");
}
?>
(From the Common of Pastors Readings from the Common of Saints: Common of Pastors: Readings outside Easter Time I. Isa 6:1, 6-8; Ps 40(39):2+4ab, 7-8a, 8b-9, 10+12; Luke 4:16a-22. II. Eph 4:1-7, 11-13; Ps 67(66):2-3, 5, 7-8; John 17:20-26. III. 1 Pet 5:1-4; Ps 23(22):1-3, 4, 5, 6; John 10:11-16. Common of Pastors: Readings during Easter Time I. Acts 20:28-38; Ps 145(144):8-9, 10-11, 12-13ab; John 14:23-29.)
Anniversary:
132nd anniversary of the death of F. Anthony Puff (78) d. 1939 at Salisbury, Rhodesia.
Anniversary:
118th anniversary of the death of P. Richard Corish (65) d. 1953 at Leeds, England.
Anniversary:
81st anniversary of the death of P. John Chula (58) d. 1990 at Lusaka, Zambia.
Anniversary:
66th anniversary of the death of P. Norman MacDonald (79) d. 2005 at Lusaka, Zambia.
Anniversary:
65th anniversary of the death of P. George Orr (87) d. 2006 at Pontypool, Cardiff, Wales.
Anniversary:
59th anniversary of the death of P. Patrick Kelly (HIB) (92) d. 2012 at Dublin, Ireland.