forked from leftypol/leftypol
Fix issue #45
This commit is contained in:
parent
4eec65782e
commit
9df6ca8ddd
3 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue