Skip to content

Commit

Permalink
Merge pull request #995 from abhishekKrHaith11/fix/issue-994
Browse files Browse the repository at this point in the history
Clean up environment variable value
  • Loading branch information
lonnieezell authored Apr 22, 2018
2 parents 28351fe + 3840b68 commit 217533b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Config/BaseConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function __construct()
elseif ($value === 'true')
$value = true;

$this->$property = $value;
$this->$property = trim($value, '\'"');
}
}
}
Expand Down

0 comments on commit 217533b

Please sign in to comment.