summaryrefslogtreecommitdiff
path: root/modules/poll
diff options
context:
space:
mode:
Diffstat (limited to 'modules/poll')
-rw-r--r--modules/poll/poll.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/poll/poll.install b/modules/poll/poll.install
index 153aae78a..8fe8ef1b7 100644
--- a/modules/poll/poll.install
+++ b/modules/poll/poll.install
@@ -148,7 +148,7 @@ function poll_update_7001() {
db_add_field('poll_votes', 'chid', array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0));
db_add_index('poll_votes', 'chid', array('chid'));
db_update('poll_votes')
- ->expression('chid', DatabaseConnection::prefixTables('COALESCE((SELECT chid FROM {poll_choices} c WHERE {poll_votes}.chorder = c.chorder AND {poll_votes}.nid = c.nid), 0)'))
+ ->expression('chid', Database::getConnection()->prefixTables('COALESCE((SELECT chid FROM {poll_choices} c WHERE {poll_votes}.chorder = c.chorder AND {poll_votes}.nid = c.nid), 0)'))
->execute();
// Delete invalid votes.
db_delete('poll_votes')->condition('chid', 0)->execute();