Relation.php references the $_POST global variable as though it were a parameter. This caused my MAMP installation to crash when rendering any page referencing this particular file. The fix was to rename the $_POST parameter to simply $POST, so as to not be conflicting with the auto-global $_POST.
Relation.php references the $_POST global variable as though it were a parameter. This caused my MAMP installation to crash when rendering any page referencing this particular file. The fix was to rename the $_POST parameter to simply $POST, so as to not be conflicting with the auto-global $_POST.