get rid of eaccelerator caching (most of it was removed already)
This commit is contained in:
@@ -172,7 +172,6 @@ function Vote()
|
||||
WHERE ID_POLL = $row[ID_POLL]
|
||||
AND ID_CHOICE IN (" . implode(', ', $pollOptions) . ")
|
||||
LIMIT " . count($pollOptions), __FILE__, __LINE__);
|
||||
eaccelerator_rm('__poll-' . $row['ID_POLL']);
|
||||
// Return to the post...
|
||||
redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
|
||||
}
|
||||
@@ -220,7 +219,6 @@ function LockVoting()
|
||||
WHERE ID_POLL = $pollID
|
||||
LIMIT 1", __FILE__, __LINE__);
|
||||
|
||||
eaccelerator_rm('__poll-' . $row['ID_POLL']);
|
||||
redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
|
||||
}
|
||||
|
||||
@@ -526,7 +524,6 @@ function EditPoll2()
|
||||
WHERE ID_POLL = $bcinfo[ID_POLL]
|
||||
LIMIT 1", __FILE__, __LINE__);
|
||||
|
||||
eaccelerator_rm('__poll-' . $row['ID_POLL']);
|
||||
// Off we go.
|
||||
redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
|
||||
}
|
||||
@@ -583,7 +580,6 @@ function RemovePoll()
|
||||
WHERE ID_TOPIC = $topic
|
||||
LIMIT 1", __FILE__, __LINE__);
|
||||
|
||||
eaccelerator_rm('__poll-' . $row['ID_POLL']);
|
||||
// Take the moderator back to the topic.
|
||||
redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user