function getNeighbour($Posted, $s, $type) { $type = ($type == '>') ? '>' : '<'; $q = array( "select ID, Title, Section, url_title, unix_timestamp(Posted) as uposted from ".PFX."textpattern where Posted $type '".doSlash($Posted)."'", ($s!='' && $s!='default') ? "and Section = '".doSlash($s)."'" : filterFrontPage(), 'and Status=4 and Posted < now() order by Posted', ($type=='<') ? 'desc' : 'asc', 'limit 1' ); $out = getRow(join(' ',$q)); return (is_array($out)) ? $out : ''; }