Skip to content

Commit

Permalink
Add missing semicolon at the end of statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksavov committed Oct 16, 2014
1 parent cccf9ff commit f7af39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/cms/layout/file.php
Expand Up @@ -147,7 +147,7 @@ protected function getPath()
$rawPath = str_replace('.', '/', $this->layoutId) . '.php';
$this->addDebugMessage('<strong>Searching layout for:</strong> ' . $rawPath);

$this->fullPath = JPath::find($this->includePaths, $rawPath)
$this->fullPath = JPath::find($this->includePaths, $rawPath);

if ($this->fullPath)
{
Expand Down

0 comments on commit f7af39e

Please sign in to comment.