// replace line breaking tags with whitespace
$text = preg_replace( "'<(br[^/>]*?/|hr[^/>]*?/|/(div|h[1-6]|li|p|td))>'si", ' ', $text );
+ $text = str_replace("\ 3", "", str_replace("\ 2", "", $text));
+
return JMnoGoSearchHelper::_smartSubstr( strip_tags( $text ), $length, $searchword );
}
<name>Search</name>
<description>STANDARD SEARCH LAYOUT DESC</description>
<params>
+ <param name="show_size" type="radio" default="1" label="Show Size" description="TIPIFSETTOSHOWSIZE">
+ <option value="0">Hide</option>
+ <option value="1">Show</option>
+ </param>
+ <param name="show_mime" type="radio" default="1" label="Show Mime Type" description="TIPIFSETTOSHOWMIME">
+ <option value="0">Hide</option>
+ <option value="1">Show</option>
+ </param>
<param name="show_date" type="radio" default="1" label="Show Created Date" description="TIPIFSETTOSHOWDATETIMECREATED">
<option value="0">Hide</option>
<option value="1">Show</option>
<a href="<?php echo JRoute::_($result->href); ?>">
<?php endif;
- echo $this->escape($result->title);
+ echo $this->escape($result->title); ?>
- if ( $result->href ) : ?>
</a>
- <?php endif;
- if ( $result->section ) : ?>
- <br />
- <span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
- (<?php echo $this->escape($result->section); ?>)
- </span>
- <?php endif; ?>
<?php endif; ?>
</div>
<div>
$row->text = preg_replace($searchRegex, '<span class="highlight">\0</span>', $row->text );
$row->href = udm_get_res_field ($results, $i, UDM_FIELD_URL);
$row->title = udm_get_res_field ($results, $i, UDM_FIELD_TITLE);
+ $row->title = str_replace("\ 3", "", str_replace("\ 2", "", $row->title));
$row->created = udm_get_res_field ($results, $i, UDM_FIELD_MODIFIED);
$row->count = udm_get_res_field ($results, $i, UDM_FIELD_ORDER);