# HG changeset patch # User Nathan Phillip Brink # Date 2011-01-15 14:29:46 # Node ID 53a8b7ab69670270de99310e711ce1490be01eda # Parent a11483f5c1ea927150485517381b9e2afb71b8c1 Use single quotes for static strings. diff --git a/auto.php b/auto.php --- a/auto.php +++ b/auto.php @@ -84,7 +84,7 @@ if (!$getsections && count($term_parts) $json_depts = array(); foreach ($departments as $key => $department) { if (!strncmp($department, $dept, $dept_strlen)) { - $json_depts[] = $department . "-"; + $json_depts[] = $department . '-'; } }