trim() はパラメーター 1 が文字列で、配列が指定されていることを期待しているというエラーが表示されます。それは 2 行目です。
$page_result = $title_result->FetchRow();
if (strlen(trim($page_result)) > 0)
$this->body = stripslashes(urldecode($page_result['title_module_text']));
else
$this->body = "";
trim() の最初のパラメーターは文字列だと思いましたか?