From: Alan Knowles Date: Mon, 17 Jun 2002 10:52:21 +0000 (+0000) Subject: Fixing for the coding standard :) X-Git-Tag: php-4.3.0dev_zend2_alpha2~232 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c904e22ade77ca2577b698853c78e3c71800783f;p=php Fixing for the coding standard :) --- diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index 3e36a6a7d2..efd76f497a 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -743,8 +743,9 @@ class PEAR_Common extends PEAR function infoFromString($data) { require_once('PEAR/Dependency.php'); - if ($error = PEAR_Dependency::checkExtension('xml')) + if ($error = PEAR_Dependency::checkExtension('xml')) { return $this->raiseError($error); + } $xp = @xml_parser_create(); if (!$xp) { return $this->raiseError('Unable to create XML parser');