[ticket/11174] include utf_tools in postgres search backend

PHPBB3-11174
This commit is contained in:
Dhruv 2012-11-12 17:05:07 +01:00 committed by Oleg Pudeyev
parent db2297827d
commit c725b02df8

View file

@ -121,6 +121,14 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
} }
} }
/**
* Load the UTF tools
*/
if (!function_exists('utf8_strlen'))
{
include($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
}
$error = false; $error = false;
} }