diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-19 04:57:06 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-08-19 04:57:06 +0000 |
commit | 518816864cb94c38a7ececcff8d86e4752ba6734 (patch) | |
tree | 4ebc899afe15acc97a57d63b9a3efa8704fee630 | |
parent | 9c4d64c2cf1dfba053b83e8d570f02b0f09bb1d2 (diff) | |
download | pmwiki.svn-518816864cb94c38a7ececcff8d86e4752ba6734.tar.bz2 |
Add $EnableFeeds (PITS:01511).
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4788 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 42b22e71..dd8d763c 100644 --- a/scripts/stdconfig.php +++ b/scripts/stdconfig.php @@ -80,6 +80,9 @@ if (IsEnabled($EnableCreole, 0)) if (IsEnabled($EnableRefCount, 0) && $action == 'refcount') include_once("$FarmD/scripts/refcount.php"); +if (isset($EnableFeeds[$action]) && $EnableFeeds[$action]) + include_once("$FarmD/scripts/feeds.php"); + if (IsEnabled($EnableRobotControl,1)) include_once("$FarmD/scripts/robots.php"); |