diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-19 04:27:46 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-19 04:27:46 +0000 |
commit | b4d1037f6edf910a98053b55df95ce1684634fb4 (patch) | |
tree | e3714a67c21643ad9c9a1d52a27d79037586832b | |
parent | 4fb97e5de6ada16d7e0b2e0b28ff63e2fffa73d7 (diff) | |
download | pmwiki.svn-b4d1037f6edf910a98053b55df95ce1684634fb4.tar.bz2 |
Add $EnablePmForm (PITS:01511).
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4783 524c5546-5005-0410-9a3e-e25e191bd360
-rw-r--r-- | scripts/stdconfig.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/stdconfig.php b/scripts/stdconfig.php index 55635259..ba24e2ce 100644 --- a/scripts/stdconfig.php +++ b/scripts/stdconfig.php @@ -71,6 +71,9 @@ if (IsEnabled($EnableCommonEnhancements,0)) { if (IsEnabled($EnableUrlApprove, 0)) include_once("$FarmD/scripts/urlapprove.php"); +if (IsEnabled($EnablePmForm, 0)) + include_once("$FarmD/scripts/pmform.php"); + if (IsEnabled($EnableRobotControl,1)) include_once("$FarmD/scripts/robots.php"); |