From 3f78399d62472aa0de524c4fc308387012c6d557 Mon Sep 17 00:00:00 2001 From: "John R. D'Orazio" Date: Sat, 4 Jan 2025 00:23:27 +0100 Subject: [PATCH] put all_paths options before base_paths options --- php/index.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/php/index.php b/php/index.php index 89dc06d..7680a6a 100644 --- a/php/index.php +++ b/php/index.php @@ -195,16 +195,17 @@ } echo '
'; echo '
' . dgettext('litexmplphp', 'Customize options for generating the Roman Calendar') . ''; -echo ''; - -echo $apiOptions->getForm(PathType::BASE_PATH); -echo ''; +echo '
'; echo ''; -echo ''; -echo $apiOptions->getForm(PathType::ALL_PATHS); echo ''; echo ''; -echo ''; +echo $apiOptions->getForm(PathType::ALL_PATHS); +echo ''; +echo ''; +echo ''; +echo $apiOptions->getForm(PathType::BASE_PATH); +echo ''; +echo ''; echo ''; echo '
' . $calendarSelectNations->getSelect() . '' . $calendarSelectDioceses->getSelect() . '
' . $submitParent . '
'; echo '
';