aboutsummaryrefslogtreecommitdiff
path: root/remove_poll.rb
diff options
context:
space:
mode:
Diffstat (limited to 'remove_poll.rb')
-rwxr-xr-xremove_poll.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/remove_poll.rb b/remove_poll.rb
index ea0b6ee..3938c69 100755
--- a/remove_poll.rb
+++ b/remove_poll.rb
@@ -14,6 +14,7 @@ QUESTIONS = ["Yes, I know what I am doing!",
CONFIRM = rand(QUESTIONS.size)
require "cgi"
+require "ftools"
if __FILE__ == $0
@@ -41,7 +42,7 @@ HEAD
if $cgi.include?("confirmnumber")
if $cgi["confirm"] == QUESTIONS[$cgi["confirmnumber"].to_i]
Dir.chdir("..")
- `mv #{POLL} /tmp/#{POLL}.#{rand(9999999)}`
+ File.move(POLL, "/tmp/#{POLL}.#{rand(9999999)}")
$htmlout += <<SUCCESS
<div>
The poll was deleted successfully!