Lines Matching full:recent
99 $num = $conf['recent'];
109 // read all recent changes. (kept short)
152 $recent = parseChangelogLine($line);
153 if ($recent === false) {
157 $lid = $recent['extra'];
158 $fulllid = $recent['id'] . '#' . $recent['extra'];
166 if ($recent['type'] === 'sc') {
174 if (isHiddenPage($recent['id'])) {
177 if ($recent['type'] === 'hl') {
182 if (($ns) && (strpos($recent['id'] . ':', $ns . ':') !== 0)) {
187 $recent['perm'] = auth_quickaclcheck($recent['id']);
188 if ($recent['perm'] < AUTH_READ) {
193 $recent['file'] = wikiFN($recent['id']);
194 $recent['exists'] = @ file_exists($recent['file']);
195 if (!$recent['exists']) {
198 if ($recent['type'] === 'dc') {
203 $data = unserialize(io_readFile(metaFN($recent['id'], '.linkbacks'), false));
211 $recent['name'] = $data['receivedpings'][$lid]['url'];
212 $recent['desc'] = $data['receivedpings'][$lid]['excerpt'];
214 return $recent;