]> granicus.if.org Git - php/commitdiff
Fixing for the coding standard :)
authorAlan Knowles <alan_k@php.net>
Mon, 17 Jun 2002 10:52:21 +0000 (10:52 +0000)
committerAlan Knowles <alan_k@php.net>
Mon, 17 Jun 2002 10:52:21 +0000 (10:52 +0000)
pear/PEAR/Common.php

index 3e36a6a7d247a2a6256fb2537882aa43c98490b3..efd76f497ada39dbb5a10327387170478d2ac723 100644 (file)
@@ -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');