diff options
-rw-r--r-- | actions/noticesearch.php | 1 | ||||
-rw-r--r-- | actions/peoplesearch.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php index 870a195e0..721c843ee 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -19,6 +19,7 @@ if (!defined('LACONICA')) { exit(1); } +require_once(INSTALLDIR.'/lib/searchaction.php'); define(NOTICES_PER_PAGE, 20); # XXX common parent for people and content search? diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 30d737b28..fce0cae8c 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -19,6 +19,7 @@ if (!defined('LACONICA')) { exit(1); } +require_once(INSTALLDIR.'/lib/searchaction.php'); define(PROFILES_PER_PAGE, 10); class PeoplesearchAction extends SearchAction { |