Skip to content

Commit

Permalink
Merge pull request joomla#1327 from elkuku/errrr
Browse files Browse the repository at this point in the history
Fix two parse errors
  • Loading branch information
realityking committed Jun 28, 2012
2 parents f26b65d + ea3dd54 commit d732b3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/joomla/installer/helper.php
Expand Up @@ -180,7 +180,7 @@ public static function detectType($p_dir)

foreach ($files as $file)
{
$xml = simplexml_load_file($file)
$xml = simplexml_load_file($file);
if (!$xml)
{
continue;
Expand Down
2 changes: 1 addition & 1 deletion libraries/joomla/installer/installer.php
Expand Up @@ -2104,7 +2104,7 @@ public function loadMD5Sum($filename)
public static function parseXMLInstallFile($path)
{
// Read the file to see if it's a valid component XML file
$xml = simplexml_load_file($path)
$xml = simplexml_load_file($path);
if (!$xml)
{
return false;
Expand Down

0 comments on commit d732b3b

Please sign in to comment.