Coding at 4am isn't always a great idea <_< typo fixed

git-svn-id: file:///home/shish/svn/shimmie2/trunk@865 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish 2008-05-19 13:05:47 +00:00
parent 1f9f306cb2
commit 2c1c605f12

View file

@ -137,7 +137,7 @@ class Database {
public function count_pages($tags=array()) { public function count_pages($tags=array()) {
global $config; global $config;
$images_per_page = $config->get_int('index_width') * $config->get_int('index_height'); $images_per_page = $config->get_int('index_width') * $config->get_int('index_height');
return ceil($thi->count_images($tags) / $images_per_page); return ceil($this->count_images($tags) / $images_per_page);
} }
public function execute($query, $args=array()) { public function execute($query, $args=array()) {