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:
authorPiotr Przybylski <piotrprz@gmail.com>2011-07-22 13:07:04 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-07-22 13:07:04 +0400
commit3586bb992f0e6c325207dc55bd01c1f3607f0b31 (patch)
tree8152d54c4ae7e92c342bf1f5e2126fee22ecdbdb /transformation_wrapper.php
parent74a00a110f6d15d24b5b40c02ec8a3916a6acd15 (diff)
parentd8f6e7da389da4ff99435dea358b713af116f9e1 (diff)
Merge remote-tracking branch 'origin/master' into drizzle
Conflicts: db_structure.php libraries/database_interface.lib.php libraries/server_synchronize.lib.php server_status.php sql.php
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 9fba8de2eb..9e329cf80d 100644
--- a/transformation_wrapper.php
+++ b/transformation_wrapper.php
@@ -87,7 +87,7 @@ if (! isset($resize)) {
$ratioWidth = $srcWidth/$newWidth;
$ratioHeight = $srcHeight/$newHeight;
- if ($ratioWidth < $ratioHeight){
+ if ($ratioWidth < $ratioHeight) {
$destWidth = $srcWidth/$ratioHeight;
$destHeight = $newHeight;
} else {