/* We don't return joins, since with_sn forces the SELECT to run on search_name first */
if ($this->with_sn && !$this->with_forced_sn) {
return array(
- 'sn' => PlSqlJoin::left('search_name', '$ME.uid = $PID')
+ 'sn' => PlSqlJoin::left('search_name', '$ME.pid = $PID')
);
} else {
return array();
}
public function i($key, $def = 0) {
- return intval(trim(Env::i($this->envprefix . $key, $def)));
+ return Env::i($this->envprefix . $key, $def);
}
public function v($key, $def = null) {
} else {
$flags = array('public');
}
- if ($ufb->i('soundex')) {
+ if ($ufb->i('with_soundex')) {
$soundex = true;
$st = array();
foreach ($strings as $string) {
}
}
// }}}
+
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
?>