Conflicts:
	inc/display.php
This commit is contained in:
czaks 2013-08-16 16:06:54 -04:00
commit ca565d07c2
5 changed files with 16 additions and 7 deletions

View file

@ -354,6 +354,10 @@ class Post {
return $built;
}
public function ratio() {
return fraction($this->filewidth, $this->fileheight, ':');
}
public function build($index=false) {
global $board, $config;
@ -473,6 +477,10 @@ class Thread {
return $built;
}
public function ratio() {
return fraction($this->filewidth, $this->fileheight, ':');
}
public function build($index=false, $isnoko50=false) {
global $board, $config, $debug;