Quote:
Originally Posted by KirbyDE
Hmm ... gonna check & update the instructions soon 
|
Sorry, I should have been more specific.
In your instructions your original code requested a find and replace for:
PHP Code:
globalize($_POST, array('pollid' => INT, 'closepoll', 'pollquestion' => STR, 'options', 'pollvotes', 'timeout'));
while the original PHP was:
PHP Code:
globalize($_POST, array('pollid' => INT, 'closepoll', 'pollquestion' => STR, 'options', 'pollvotes', 'timeout' => INT));
Another find and replace requested I search for:
PHP Code:
timeout = '" . addslashes($timeout) . "'
while the original PHP was:
PHP Code:
timeout = $timeout
Nit picking I know, but perhaps confusing for a newbie who is expecting a carbon copy with the find and replace.
And nice to see that you have updated the instructions too.
Love your work.