]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
require search action lib in search actions
authorEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 23:12:17 +0000 (19:12 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 9 Jul 2008 23:12:17 +0000 (19:12 -0400)
darcs-hash:20080709231217-84dde-2df00042fd1a0c571f232ad0815b191af043c5a0.gz

actions/noticesearch.php
actions/peoplesearch.php

index 870a195e0732892796f31fe5f71c0b96d7e01a5d..721c843eed749cf2fb004cd60c50476aa18bf729 100644 (file)
@@ -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?
index 30d737b2854b6593ad6633621c566c16a0dd3e0e..fce0cae8c86af82d74d4e5ed480390b3b0720888 100644 (file)
@@ -19,6 +19,7 @@
 
 if (!defined('LACONICA')) { exit(1); }
 
+require_once(INSTALLDIR.'/lib/searchaction.php');
 define(PROFILES_PER_PAGE, 10);
 
 class PeoplesearchAction extends SearchAction {