diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-19 04:42:02 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-19 04:42:02 +0000 |
commit | 8d883fd95812268b9c965986daa3ca355044984a (patch) | |
tree | 5be6f90d88d62149003471a6079c2fe834d89ee2 | |
parent | 25f46319b99d9f7b4db771fda4385ffbd916bce6 (diff) | |
download | pmwiki.svn-8d883fd95812268b9c965986daa3ca355044984a.tar.bz2 |
Add $EnableRefCount (PITS:01511).
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4786 524c5546-5005-0410-9a3e-e25e191bd360
-rw-r--r-- | scripts/stdconfig.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/stdconfig.php b/scripts/stdconfig.php index 7acadd69..42b22e71 100644 --- a/scripts/stdconfig.php +++ b/scripts/stdconfig.php @@ -76,6 +76,10 @@ if (IsEnabled($EnablePmForm, 0)) if (IsEnabled($EnableCreole, 0)) include_once("$FarmD/scripts/creole.php"); + +if (IsEnabled($EnableRefCount, 0) && $action == 'refcount') + include_once("$FarmD/scripts/refcount.php"); + if (IsEnabled($EnableRobotControl,1)) include_once("$FarmD/scripts/robots.php"); |