]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
use single quotes in sql
authorBrenda Wallace <shiny@cpan.org>
Fri, 26 Jun 2009 22:32:50 +0000 (10:32 +1200)
committerBrenda Wallace <shiny@cpan.org>
Wed, 15 Jul 2009 08:19:01 +0000 (20:19 +1200)
lib/grouptagcloudsection.php

index 9b7a10f6b9ea029e45bda11f64fa7604411f04b3..0e0cbdd63d88064a4e5d6221161fbffcf78c5736 100644 (file)
@@ -73,7 +73,7 @@ class GroupTagCloudSection extends TagCloudSection
         $quoted = array();
 
         foreach ($names as $name) {
-            $quoted[] = "\"$name\"";
+            $quoted[] = "'$name'";
         }
 
         $namestring = implode(',', $quoted);