Commit f3292ff3c50b4ec0f0f95faa7a8e4da18d77deec
1 parent
8bc17b95
minor fixes for now-missing-requires.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4574 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
5 additions
and
0 deletions
lib/authentication/authenticationprovider.inc.php
plugins/ktcore/admin/workflows.php
| ... | ... | @@ -3,6 +3,7 @@ |
| 3 | 3 | require_once(KT_LIB_DIR . '/dispatcher.inc.php'); |
| 4 | 4 | require_once(KT_LIB_DIR . '/validation/dispatchervalidation.inc.php'); |
| 5 | 5 | require_once(KT_LIB_DIR . '/templating/templating.inc.php'); |
| 6 | +require_once(KT_LIB_DIR . '/widgets/fieldWidgets.php'); | |
| 6 | 7 | |
| 7 | 8 | require_once(KT_LIB_DIR . '/workflow/workflow.inc.php'); |
| 8 | 9 | require_once(KT_LIB_DIR . '/workflow/workflowstate.inc.php'); |
| ... | ... | @@ -15,6 +16,8 @@ require_once(KT_LIB_DIR . '/groups/Group.inc'); |
| 15 | 16 | require_once(KT_LIB_DIR . '/roles/Role.inc'); |
| 16 | 17 | require_once(KT_LIB_DIR . '/search/savedsearch.inc.php'); |
| 17 | 18 | |
| 19 | +require_once(KT_LIB_DIR . '/actions/documentaction.inc.php'); | |
| 20 | + | |
| 18 | 21 | class KTWorkflowDispatcher extends KTAdminDispatcher { |
| 19 | 22 | var $bAutomaticTransaction = true; |
| 20 | 23 | ... | ... |