From: Jason Richey Date: Wed, 3 Nov 2004 00:09:12 +0000 (+0000) Subject: Changed single-quotes to double quotes in string containing $group X-Git-Tag: 1.5.0alpha1~1405 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=commitdiff_plain;h=e7162c55d76da4c313eb379b2593348a5a49abc3;p=lhc%2Fweb%2Fwiklou.git Changed single-quotes to double quotes in string containing $group --- diff --git a/includes/SpecialUserlevels.php b/includes/SpecialUserlevels.php index c4e0a082d1..87a7abb249 100644 --- a/includes/SpecialUserlevels.php +++ b/includes/SpecialUserlevels.php @@ -250,7 +250,7 @@ class UserlevelsForm extends HTMLForm { $selectname = $this->mName.'-'.$selectname; $dbr =& wfGetDB( DB_SLAVE ); $group = $dbr->tableName( 'group' ); - $sql = 'SELECT group_id, group_name FROM $group'; + $sql = "SELECT group_id, group_name FROM $group"; $res = $dbr->query($sql,'wfSpecialAdmin'); $out = wfMsg($selectname);