21288 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 619 Views |
-
Search Displays/Shows All Pages

3 July 2009 at 8:16am
No matter what I search for, the search result page shows all my pages, even blank pages with no content.
Search was working fine, so something changed along the way as I've been making custom page types. How/why would this have anything to do with it?
Here is my search code which is pretty standard:
function SearchForm() {
$searchText = isset($_REQUEST['Search']) ? $_REQUEST['Search'] : 'Search';
$fields = new FieldSet(
new TextField('Search', '', $searchText)
);
$actions = new FieldSet(
new FormAction('results', 'Search')
);return new SearchForm($this, 'SearchForm', $fields, $actions);
}
function results($data, $form){
$data = array(
'Results' => $form->getResults(),
'Query' => $form->getSearchQuery(),
'Title' => 'Search Results'
);
foreach($data["Results"] as $page) {
if($page->Filename) {
$data["Results"]->remove($page);
}
}
return $this->customise($data)->renderWith(array('SearchResults', 'Page'));
}Here is the search URL produced by a search
I have no idea where to even begin looking for a fix.
Suggestions/thoughts?
| 619 Views | ||
|
Page:
1
|
Go to Top |

