I´ve got a little problem with the output from search, and characters that have an accent (The site is in Spanish so they are a few) are not rendering corectly in the search output

php 5
phpwcms 1.4.5 (2010/02/08, r398).
lang utf8

But this isn't utf, is it? What are the tables looking like?helresa wrote:the database is running latin1_swedish_ci which is the default...
Code: Select all
<p>“City Hope” de Javier Arcenillas, ideada como una panorámica visual-fotográfica confinada en las ciudades vertedero de América Latina, bien podría entenderse como un gran relato universal narrado desde los confines que dividen la riqueza y la pobreza, el despilfarro y la dignidad personificada en los Code: Select all
require_once (PHPWCMS_ROOT.'/include/inc_lib/lib.php_special_entities.php');Code: Select all
require_once (PHPWCMS_ROOT.'/include/inc_lib/lib.php_special_entities.UTF8.php');Code: Select all
if(PHPWCMS_CHARSET == 'utf-8') {
require_once (PHPWCMS_ROOT.'/include/inc_lib/lib.php_special_entities.UTF8.php');
} else {
require_once (PHPWCMS_ROOT.'/include/inc_lib/lib.php_special_entities.php');
}
require_once (PHPWCMS_ROOT.'/include/inc_lib/charset_helper.inc.php');
…Oliver Georgi wrote:Change the first lines of include/inc_lib/general.inc.php to: