Changeset 523332
- Timestamp:
- 03/25/2012 08:26:00 AM (14 years ago)
- Location:
- simple-poll
- Files:
-
- 2 edited
- 3 copied
-
tags/1.0.5 (copied) (copied from simple-poll/trunk)
-
tags/1.0.5/readme.txt (copied) (copied from simple-poll/trunk/readme.txt) (4 diffs)
-
tags/1.0.5/toSendIt-SimplePoll.php (copied) (copied from simple-poll/trunk/toSendIt-SimplePoll.php) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/toSendIt-SimplePoll.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-poll/tags/1.0.5/readme.txt
r520176 r523332 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.0. 46 Stable tag: 1.0.5 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 15 15 16 16 * Infinite polls 17 * Multiple polls per page 17 18 * One preference per user 18 19 * Customizable text … … 28 29 1. Configure it as you need. 29 30 30 Please take just few seconds to rate this plugin and tell the others if it works or not.31 Please take just few seconds to rate this plugin and tell the others how it works. 31 32 32 33 == Frequently Asked Questions == 33 34 35 = Why the plugin does not have it's own CSS? = 36 Because we think that the aspect of the polls must suite perfectly the theme settings and each theme has its rules for radio buttons, fieldsets and labels. 37 38 = Can I allow anonymous vote? = 39 No, actually the plugin supports only authenticated users. Maybe we could implement into a next version. 40 41 = Why I'm not able to change polls already rated by some users? = 42 We think that after one user has expressed it's preference anyone must change the answers. 43 So we have developed in this way. 44 34 45 = How can I ask support for this plugin? = 35 We trust the plugin is really simple but, if the plugin is too complexfor you, please use the support forum.46 We trust the plugin is really simple but, if it is too complicated for you, please use the support forum. 36 47 37 48 == Screenshots == … … 56 67 * Bugfix: Wrong defined label in Simple Poll Settings 57 68 69 = 1.0.5 (2012-03-25) = 70 * Improvement: Multiple polls per page are now allowed 71 * New: added some answers in the FAQ. 72 58 73 == Upgrade Notice == 59 74 -
simple-poll/tags/1.0.5/toSendIt-SimplePoll.php
r520176 r523332 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.0. 44 * @version 1.0.5 5 5 */ 6 6 /* … … 9 9 Description: Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. 10 10 Author: toSend.it di Luisa Mara 11 Version: 1.0. 411 Version: 1.0.5 12 12 Author URI: http://tosend.it 13 13 */ … … 316 316 # We have not voted yet 317 317 318 if(isset($_POST) && count($_POST)>0 && isset($_POST['answer']) && is_numeric($_POST['answer'])){ 318 if(isset($_POST) 319 && count($_POST)>0 320 && isset($_POST['answer']) 321 && is_numeric($_POST['answer']) 322 && isset($_POST['poll']) 323 && is_numeric($_POST['poll']) 324 && $_POST['poll'] == $id 325 ){ 319 326 $answer = $_POST['answer']; 320 327 … … 338 345 </fieldset> 339 346 <p> 347 <input type="hidden" name="poll" value="%1$d" /> 340 348 <input type="submit" value="%s" /> 341 349 </p> -
simple-poll/trunk/readme.txt
r520176 r523332 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.0. 46 Stable tag: 1.0.5 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 15 15 16 16 * Infinite polls 17 * Multiple polls per page 17 18 * One preference per user 18 19 * Customizable text … … 28 29 1. Configure it as you need. 29 30 30 Please take just few seconds to rate this plugin and tell the others if it works or not.31 Please take just few seconds to rate this plugin and tell the others how it works. 31 32 32 33 == Frequently Asked Questions == 33 34 35 = Why the plugin does not have it's own CSS? = 36 Because we think that the aspect of the polls must suite perfectly the theme settings and each theme has its rules for radio buttons, fieldsets and labels. 37 38 = Can I allow anonymous vote? = 39 No, actually the plugin supports only authenticated users. Maybe we could implement into a next version. 40 41 = Why I'm not able to change polls already rated by some users? = 42 We think that after one user has expressed it's preference anyone must change the answers. 43 So we have developed in this way. 44 34 45 = How can I ask support for this plugin? = 35 We trust the plugin is really simple but, if the plugin is too complexfor you, please use the support forum.46 We trust the plugin is really simple but, if it is too complicated for you, please use the support forum. 36 47 37 48 == Screenshots == … … 56 67 * Bugfix: Wrong defined label in Simple Poll Settings 57 68 69 = 1.0.5 (2012-03-25) = 70 * Improvement: Multiple polls per page are now allowed 71 * New: added some answers in the FAQ. 72 58 73 == Upgrade Notice == 59 74 -
simple-poll/trunk/toSendIt-SimplePoll.php
r520176 r523332 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.0. 44 * @version 1.0.5 5 5 */ 6 6 /* … … 9 9 Description: Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. 10 10 Author: toSend.it di Luisa Mara 11 Version: 1.0. 411 Version: 1.0.5 12 12 Author URI: http://tosend.it 13 13 */ … … 316 316 # We have not voted yet 317 317 318 if(isset($_POST) && count($_POST)>0 && isset($_POST['answer']) && is_numeric($_POST['answer'])){ 318 if(isset($_POST) 319 && count($_POST)>0 320 && isset($_POST['answer']) 321 && is_numeric($_POST['answer']) 322 && isset($_POST['poll']) 323 && is_numeric($_POST['poll']) 324 && $_POST['poll'] == $id 325 ){ 319 326 $answer = $_POST['answer']; 320 327 … … 338 345 </fieldset> 339 346 <p> 347 <input type="hidden" name="poll" value="%1$d" /> 340 348 <input type="submit" value="%s" /> 341 349 </p>
Note: See TracChangeset
for help on using the changeset viewer.