wait, no
git-svn-id: file:///home/shish/svn/shimmie2/trunk@282 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
parent
6dd48c2335
commit
061ed4a3fe
1 changed files with 3 additions and 3 deletions
|
@ -92,17 +92,17 @@ class Image {
|
||||||
|
|
||||||
public function get_image_link() {
|
public function get_image_link() {
|
||||||
global $config;
|
global $config;
|
||||||
return url_escape($this->parse_link_template($config->get_string('image_ilink')));
|
return $this->parse_link_template($config->get_string('image_ilink'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_short_link() {
|
public function get_short_link() {
|
||||||
global $config;
|
global $config;
|
||||||
return url_escape($this->parse_link_template($config->get_string('image_slink')));
|
return $this->parse_link_template($config->get_string('image_slink'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_thumb_link() {
|
public function get_thumb_link() {
|
||||||
global $config;
|
global $config;
|
||||||
return url_escape($this->parse_link_template($config->get_string('image_tlink')));
|
return $this->parse_link_template($config->get_string('image_tlink'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_tooltip() {
|
public function get_tooltip() {
|
||||||
|
|
Reference in a new issue