Skip to content

Commit

Permalink
Fix use of double quotes when single suffices
Browse files Browse the repository at this point in the history
  • Loading branch information
eileenmcnaughton authored and totten committed Aug 24, 2022
1 parent 364f33d commit a07560c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Core/I18n.php
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ public function setLocale($locale) {
global $dbLocale;

if ($dbLocale) {
$dbLocale = "_" . $civicrmLocale->db;
$dbLocale = '_' . $civicrmLocale->db;
}

// For self::getLocale()
Expand Down

0 comments on commit a07560c

Please sign in to comment.