]> git.pld-linux.org Git - packages/php-pear-Image_Transform.git/commitdiff
- applied in 0.9.0
authorElan Ruusamäe <glen@pld-linux.org>
Thu, 6 Oct 2005 17:45:25 +0000 (17:45 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    GD.php.patch -> 1.2

GD.php.patch [deleted file]

diff --git a/GD.php.patch b/GD.php.patch
deleted file mode 100644 (file)
index 83dc526..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: GD.php
-===================================================================
-RCS file: /repository/pear/Image_Transform/Driver/GD.php,v
-retrieving revision 1.18
-diff -u -u -r1.18 GD.php
---- GD.php     29 Dec 2003 18:25:28 -0000      1.18
-+++ GD.php     19 Jan 2004 16:55:16 -0000
-@@ -228,7 +228,12 @@
-     {
-         $type           = $type==''? $this->type : $type;
-         $functionName   = 'image' . $type;
--        $functionName($this->imageHandle, $filename) ;
-+        if ($type == 'jpeg') {
-+            $functionName($this->imageHandle, $filename, $quality);
-+        }
-+        else {
-+            $functionName($this->imageHandle, $filename) ;
-+        }
-         if (!$this->keep_settings_on_save) {
-             $this->free();
-         }
This page took 0.53635 seconds and 4 git commands to generate.