Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2011-07-22 11:18:02 +0400
committerMichal Čihař <mcihar@suse.cz>2011-07-22 11:18:02 +0400
commit25bda8e991f2820971c343315cd3ab3d974b2684 (patch)
tree6f68b4133c45eca085ee9a677ab196b037e22cd2 /transformation_wrapper.php
parent219ec73d69a0bee94ac3bf98757db25360862b39 (diff)
Fix spacing on opening code block
Diffstat (limited to 'transformation_wrapper.php')
-rw-r--r--transformation_wrapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/transformation_wrapper.php b/transformation_wrapper.php
index 50d7ceba7a..f229bd3a2f 100644
--- a/transformation_wrapper.php
+++ b/transformation_wrapper.php
@@ -88,7 +88,7 @@ if (! isset($resize)) {
$ratioWidth = $srcWidth/$newWidth;
$ratioHeight = $srcHeight/$newHeight;
- if ($ratioWidth < $ratioHeight){
+ if ($ratioWidth < $ratioHeight) {
$destWidth = $srcWidth/$ratioHeight;
$destHeight = $newHeight;
} else {