diff options
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 5dedc2c..111b03e 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1770,13 +1770,13 @@ class PHPFSPOT { case 4: /* bottom, right */ $flip_vert = true; break; case 5: /* left side, top */ - $rotate = 90; $flip_vert = true; break; + $rotate = 270; $flip_vert = true; break; case 6: /* right side, top */ - $rotate = 90; break; + $rotate = 270; break; case 7: /* left side, bottom */ - $rotate = 270; $flip_vert = true; break; + $rotate = 90; $flip_vert = true; break; case 8: /* right side, bottom */ - $rotate = 270; break; + $rotate = 90; break; } } |