a bunch of fixes

This commit is contained in:
Shish
2009-01-22 05:42:44 -08:00
parent bda38bff6c
commit d98962a30e
12 changed files with 28 additions and 40 deletions

View File

@@ -173,7 +173,7 @@ class Image {
return $this->parse_link_template(make_link('_images/$hash/$id - $tags.$ext'));
}
else {
return $this->parse_link_template('image/$id.$ext');
return $this->parse_link_template(make_link('image/$id.$ext'));
}
}
@@ -190,7 +190,7 @@ class Image {
return $this->parse_link_template(make_link('_thumbs/$hash/thumb.jpg'));
}
else {
return $this->parse_link_template('image/$id.jpg');
return $this->parse_link_template(make_link('image/$id.jpg'));
}
}