diff options
Diffstat (limited to 'solr_search.module')
-rwxr-xr-x | solr_search.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/solr_search.module b/solr_search.module index 963350c..7574924 100755 --- a/solr_search.module +++ b/solr_search.module @@ -208,9 +208,9 @@ function ajax_solr_search_result_callback($form, $form_state) $sno++; $output .= '<li>'; $output .= '<p><b>Book: </b>' . $doc->title . ' (' . $doc->author . ')</p>'; - $output .= '<p><b>Chapter: </b>' . $doc->chapter . '</p>'; - $output .= '<p><b>Example: </b>' . $doc->example . '</p>'; - $output .= '<p><b>Links: </b> <a href="' . base_path() . 'textbook_companion/generate_book/' . $doc->book_id . '"><span style="font-weight:bold;font-size:16px;">⤵</span> Download entire book</a> <a href="https://rcloud.fossee.in/index?eid=' . $doc->id . '" target="_blank"><span style="font-weight:bold;font-size:20px;">»</span> View this example</a></p>'; + $output .= '<p><b>Chapter: </b>' . $doc->chapter[0] . '</p>'; + $output .= '<p><b>Example: </b>' . $doc->example[0] . '</p>'; + $output .= '<p><b>Links: </b> <a href="' . base_path() . 'textbook-companion/download/book/' . $doc->book_id[0]. '"><span style="font-weight:bold;font-size:16px;">⤵</span> Download entire book</a> <a href="127.0.0.1/index?eid=' . $doc->id . '" target="_blank"><span style="font-weight:bold;font-size:20px;">»</span> View this example</a></p>'; $output .= '</li>'; } $output .= '<ol></div>'; |