get rid of eaccelerator caching (most of it was removed already)

This commit is contained in:
Aleksei Miheev
2014-01-05 13:25:35 +00:00
parent 4c2da68616
commit 56902dc8cc
2 changed files with 0 additions and 5 deletions

View File

@@ -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']);
}