From: gbateson Date: Wed, 26 Apr 2006 03:07:38 +0000 (+0000) Subject: change single quotes to double quotes. Probable fix for bug 5315 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=4f6a57d173892f921553d6a09c95f868c482d462;p=moodle.git change single quotes to double quotes. Probable fix for bug 5315 --- diff --git a/mod/hotpot/db/update_to_v2.php b/mod/hotpot/db/update_to_v2.php index a5ed613c00..2147a4ff43 100644 --- a/mod/hotpot/db/update_to_v2.php +++ b/mod/hotpot/db/update_to_v2.php @@ -7,7 +7,7 @@ function hotpot_update_to_v2_1_16() { $length = 20; $field = 'name'; $table = 'hotpot_questions'; - $index = '{$table}_{$name}_idx'; + $index = "{$table}_{$name}_idx"; // remove the index hotpot_db_delete_index("{$CFG->prefix}$table", $index);