This commit is contained in:
8chan 2014-06-24 19:40:16 +00:00 committed by Fredrick Brennan
parent 4eec65782e
commit 9df6ca8ddd
3 changed files with 8 additions and 8 deletions

View file

@ -380,10 +380,10 @@ class Post {
$this->body
);
}
public function link($pre = '') {
public function link($pre = '', $page = false) {
global $config, $board;
return $this->root . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $this->thread) . '#' . $pre . $this->id;
return $this->root . $board['dir'] . $config['dir']['res'] . sprintf(($page ? $page : $config['file_page']), $this->thread) . '#' . $pre . $this->id;
}
public function build($index=false) {
@ -435,10 +435,10 @@ class Thread {
$this->body
);
}
public function link($pre = '') {
public function link($pre = '', $page = false) {
global $config, $board;
return $this->root . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $this->id) . '#' . $pre . $this->id;
return $this->root . $board['dir'] . $config['dir']['res'] . sprintf(($page ? $page : $config['file_page']), $this->id) . '#' . $pre . $this->id;
}
public function add(Post $post) {
$this->posts[] = $post;