summaryrefslogtreecommitdiff
path: root/modules/poll
diff options
context:
space:
mode:
Diffstat (limited to 'modules/poll')
-rw-r--r--modules/poll/poll.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/poll/poll.module b/modules/poll/poll.module
index eefa9740c..22902e975 100644
--- a/modules/poll/poll.module
+++ b/modules/poll/poll.module
@@ -13,7 +13,7 @@ class Poll {
}
function poll_cron() {
- $result = _node_get(array("type" => "poll"));
+/* $result = _node_get(array("type" => "poll"));
while ($poll = db_fetch_array($result)) {
if ($poll[active]) {
if (($poll[timestamp] + $poll[runtime]) < time()) {
@@ -21,7 +21,7 @@ function poll_cron() {
node_save($poll, array(active));
}
}
- }
+ }*/
}
function poll_get_choices_array($poll) {