From c904e22ade77ca2577b698853c78e3c71800783f Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 17 Jun 2002 10:52:21 +0000 Subject: [PATCH] Fixing for the coding standard :) --- pear/PEAR/Common.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'); -- 2.50.1