Plugin Directory

Changeset 396717


Ignore:
Timestamp:
06/13/2011 03:10:15 PM (15 years ago)
Author:
ekeller
Message:

Fixed Images in SearchResult.

Location:
opensearchserver-search/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • opensearchserver-search/trunk/index.php

    r395400 r396717  
    127127                                $document = $index->newDocument($lang);
    128128                                $document->newField('id', $posts->post_type.'_'.$posts->ID);
    129                                 $document->newField('type', $posts->post_type);
    130                                 $document->newField('title', $posts->post_title);
    131                                 $document->newField('content', $posts->post_content);
     129                                $document->newField('type', strip_tags($posts->post_type));
     130                                $document->newField('title', strip_tags($posts->post_title));
     131                                $document->newField('content', strip_tags($posts->post_content));
    132132                                $document->newField('url', $posts->guid);
    133133                                $document->newField('timestamp', $posts->post_date_gmt);
  • opensearchserver-search/trunk/readme.txt

    r395400 r396717  
    57572. Search provided by OpenSearchServer with facet and filter.
    5858
     59
     60= 1.0.3 =
     61* Fixed images in search result.
     62
    5963= 1.0.2 =
    6064* Added deletion feature in OSS plugin
  • opensearchserver-search/trunk/search_result.php

    r395099 r396717  
    2020        $cont .='<table border="0" style="border:none">
    2121    <tr>
    22          <td width="100px" style="border:none">
     22         <td width="120px" height="5%" style="border:none">
    2323            <div>
    2424            ';
Note: See TracChangeset for help on using the changeset viewer.