diff options
| author | Jerry Russell <windblown@users.sourceforge.net> | 2006-06-29 16:28:42 +0000 |
|---|---|---|
| committer | Jerry Russell <windblown@users.sourceforge.net> | 2006-06-29 16:28:42 +0000 |
| commit | 3985189c924d53e24301ee42741fa974fc0a5420 (patch) | |
| tree | 180f02879aff468d7f56f2f2bdb77252f4bbc8c3 /templates | |
| parent | 11a8109e44216d5f1b012dcb46a3081d9b5aa00c (diff) | |
| download | search-3985189c924d53e24301ee42741fa974fc0a5420.tar.gz search-3985189c924d53e24301ee42741fa974fc0a5420.tar.bz2 search-3985189c924d53e24301ee42741fa974fc0a5420.zip | |
removed |escape's that were causing html to render escaped.. (i.e. links were displaying as text, not links)
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/search.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/search.tpl b/templates/search.tpl index b1cf302..5cf8f09 100644 --- a/templates/search.tpl +++ b/templates/search.tpl @@ -40,7 +40,7 @@ {* using capture for no particular reason appart from a nicer layout - xing *} {capture name=title} {assign var=guid value=$results[search].content_type_guid} - {tr}{$gLibertySystem->mContentTypes.$guid.content_description}{/tr} <a href="{$results[search].href}&highlight={$words}">{$results[search].title|escape}</a> + {tr}{$gLibertySystem->mContentTypes.$guid.content_description}{/tr} <a href="{$results[search].href}&highlight={$words}">{$results[search].title}</a> <small> • {tr}Hits{/tr}: {$results[search].hits} {if $gBitSystem->isFeatureActive( 'search_fulltext' )} • @@ -57,7 +57,7 @@ {/capture} <div class="search box"> - <h3>{$smarty.capture.title|escape}</h3> + <h3>{$smarty.capture.title}</h3> <div class="boxcontent"> {$results[search].parsed|strip_tags|truncate:250} <br /> |
