aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/derivative.inc.php2
-rw-r--r--include/template.class.php5
2 files changed, 6 insertions, 1 deletions
diff --git a/include/derivative.inc.php b/include/derivative.inc.php
index c45c77b80..2f2f4b3d1 100644
--- a/include/derivative.inc.php
+++ b/include/derivative.inc.php
@@ -258,7 +258,7 @@ final class DerivativeImage
$size = $this->get_size();
if ($size)
{
- return 'width='.$size[0].' height='.$size[1];
+ return 'width="'.$size[0].'" height="'.$size[1].'"';
}
}
diff --git a/include/template.class.php b/include/template.class.php
index 12fc9d10d..ea70549f9 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -899,6 +899,11 @@ class PwgTemplateAdapter
return call_user_func_array('sprintf', $args );
}
+ function derivative($type, $img)
+ {
+ return new DerivativeImage($type, $img);
+ }
+
function derivative_url($type, $img)
{
return DerivativeImage::url($type, $img);