fixed search indexer errors

This commit is contained in:
JT Smith 2004-09-13 19:44:38 +00:00
parent c485014062
commit 6402c8f3af
10 changed files with 23 additions and 21 deletions

View file

@ -76,8 +76,8 @@ sub getIndexerParams {
fieldsToIndex => ["description", "name"],
contentType => 'wobjectDetail',
url => 'WebGUI::URL::append($data{urlizedTitle},"func=viewEvent&wid=$data{wid}&eid=$data{eid}")',
headerShortcut => 'select name from EventsCalendar_event where EventsCalendar_eventId=$data{eid}',
bodyShortcut => 'select description from EventsCalendar_event where EventsCalendar_eventId=$data{eid}',
headerShortcut => 'select name from EventsCalendar_event where EventsCalendar_eventId=\'$data{eid}\'',
bodyShortcut => 'select description from EventsCalendar_event where EventsCalendar_eventId=\'$data{eid}\'',
}
};
}