Package: php-fpdf
Version: 1.53.dfsg-4
Severity: normal
Tags: patch
Hi,
Attached is the diff for my php-fpdf 1.53.dfsg-4.1 NMU.
diff -Nru /tmp/WkDCZC0tOf/php-fpdf-1.53.dfsg/debian/changelog
/tmp/TGe27WI9YF/php-fpdf-1.53.dfsg/debian/changelog
--- /tmp/WkDCZC0tOf/php-fpdf-1.53.dfsg/debian/changelog 2006-10-01
20:55:20.000000000 +0200
+++ /tmp/TGe27WI9YF/php-fpdf-1.53.dfsg/debian/changelog 2006-10-01
20:55:21.000000000 +0200
@@ -1,3 +1,12 @@
+php-fpdf (1.53.dfsg-4.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Remove the class_exists() call -- the solution in 1.53.dfsg-4 breaks with
+ PHP < 5.x, and it's not especially useful in the first place.
+ (Closes: #388711)
+
+ -- Steinar H. Gunderson <[EMAIL PROTECTED]> Sun, 1 Oct 2006 20:50:17 +0200
+
php-fpdf (1.53.dfsg-4) unstable; urgency=medium
* Disable recursive autoloading of the FPDF class (closes: #385430)
diff -Nru /tmp/WkDCZC0tOf/php-fpdf-1.53.dfsg/fpdf.php
/tmp/TGe27WI9YF/php-fpdf-1.53.dfsg/fpdf.php
--- /tmp/WkDCZC0tOf/php-fpdf-1.53.dfsg/fpdf.php 2006-10-01 20:55:20.000000000
+0200
+++ /tmp/TGe27WI9YF/php-fpdf-1.53.dfsg/fpdf.php 2006-10-01 20:55:21.000000000
+0200
@@ -9,8 +9,6 @@
* You may use and modify this software as you wish.
*
*******************************************************************************/
-if(!class_exists('FPDF', false))
-{
define('FPDF_VERSION','1.53');
class FPDF
@@ -1643,5 +1641,4 @@
exit;
}
-}
?>