diff --git a/composer.json b/composer.json index 8c8e01b75..ac04b5259 100644 --- a/composer.json +++ b/composer.json @@ -67,7 +67,6 @@ "thirdparty/pear", "thirdparty/html2ps_pdf", "thirdparty/phing", - "thirdparty/phpmailer", "rbac/engine/classes/" ], "files": [ diff --git a/thirdparty/html2ps_pdf/output.png.class.php b/thirdparty/html2ps_pdf/output.png.class.php index 0f29b2841..529901a87 100644 --- a/thirdparty/html2ps_pdf/output.png.class.php +++ b/thirdparty/html2ps_pdf/output.png.class.php @@ -185,7 +185,7 @@ class OutputDriverPNG extends OutputDriverGeneric { $this->_color = array(); $this->_font = array(); - $this->_path = new Path; + $this->_path = new HtmlPsPath; $this->_clipping = array(); $this->_font_factory = new FontFactory(); @@ -266,7 +266,7 @@ class OutputDriverPNG extends OutputDriverGeneric { /** * Reset path after clipping have been applied */ - $this->_path = new Path; + $this->_path = new HtmlPsPath; } function close() { @@ -311,7 +311,7 @@ class OutputDriverPNG extends OutputDriverGeneric { function fill() { $this->_path->fill($this->_transform, $this->_image, $this->_getCurrentColor()); - $this->_path = new Path; + $this->_path = new HtmlPsPath; } function font_ascender($name, $encoding) { @@ -524,7 +524,7 @@ class OutputDriverPNG extends OutputDriverGeneric { function stroke() { $this->_path->stroke($this->_transform, $this->_image, $this->_getCurrentColor()); - $this->_path = new Path; + $this->_path = new HtmlPsPath; } } ?> \ No newline at end of file diff --git a/thirdparty/html2ps_pdf/path.php b/thirdparty/html2ps_pdf/path.php index c018e1c25..dfd9a8b58 100644 --- a/thirdparty/html2ps_pdf/path.php +++ b/thirdparty/html2ps_pdf/path.php @@ -3,10 +3,10 @@ require_once(HTML2PS_DIR.'path.point.php'); require_once(HTML2PS_DIR.'path.rectangle.php'); -class Path { +class HtmlPsPath { var $_points; - function Path() { + function HtmlPsPath() { $this->clear(); } @@ -101,7 +101,7 @@ class Path { } } -class PathCircle extends Path { +class PathCircle extends HtmlPsPath { var $_x; var $_y; var $_r; diff --git a/thirdparty/phing/IntrospectionHelper.php b/thirdparty/phing/IntrospectionHelper.php index 5cb693885..2396d4c0e 100644 --- a/thirdparty/phing/IntrospectionHelper.php +++ b/thirdparty/phing/IntrospectionHelper.php @@ -36,7 +36,7 @@ include_once 'phing/util/StringHelper.php'; * * @author Andreas Aderhold * @author Hans Lellelid - * @copyright © 2001,2002 THYRELL. All rights reserved + * @copyright © 2001,2002 THYRELL. All rights reserved * @version $Revision: 1.19 $ * @package phing */