aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rw-r--r--admin/include/image.class.php4
-rw-r--r--admin/themes/default/template/configuration.tpl2
2 files changed, 4 insertions, 2 deletions
diff --git a/admin/include/image.class.php b/admin/include/image.class.php
index 8ab6d9384..97875b796 100644
--- a/admin/include/image.class.php
+++ b/admin/include/image.class.php
@@ -275,7 +275,7 @@ class pwg_image
static function get_rotation_angle_from_code($rotation_code)
{
- switch($rotation_code)
+ switch($rotation_code%4)
{
case 0: return 0;
case 1: return 90;
@@ -623,7 +623,7 @@ class image_ext_imagick implements imageInterface
ilog($exec);
if (is_array($returnarray) && (count($returnarray)>0) )
{
- ilog($returnarray);
+ ilog('ERROR', $returnarray);
}
return is_array($returnarray);
}
diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl
index 3c87f1186..7fbbb26ad 100644
--- a/admin/themes/default/template/configuration.tpl
+++ b/admin/themes/default/template/configuration.tpl
@@ -293,6 +293,7 @@ jQuery(document).ready(function(){
var sizeName = jQuery(this).attr("id").split("-")[1];
jQuery("#sizeEdit-"+sizeName).toggle();
jQuery(this).hide();
+ return false;
});
jQuery(".cropToggle").click(function() {
@@ -490,6 +491,7 @@ jQuery(document).ready(function() {
jQuery(".addWatermarkOpen").click(function(){
jQuery("#addWatermark, #selectWatermark").toggle();
+ return false;
});
});
{/literal}{/footer_script}