This commit is contained in:
Savetheinternet 2011-05-25 20:15:47 +10:00
parent 4e49d08359
commit 38cc13f9b9
2 changed files with 31 additions and 27 deletions

View file

@ -260,11 +260,15 @@
}
public function build($index=false) {
global $board, $config, $memcached;
global $board, $config, $memcached, $debug;
if(!$this->mod && $config['memcached']['enabled']) {
if($built = $memcached->get($this->memcached_key($index)))
if($built = $memcached->get($this->memcached_key($index))) {
if($config['debug']) {
$debug['memcached'][] = $this->memcached_key($index);
}
return $built;
}
}
$built = '<div class="post reply" id="reply_' . $this->id . '">' .