Changeset 531382
- Timestamp:
- 04/15/2012 01:30:29 PM (14 years ago)
- Location:
- simple-poll
- Files:
-
- 2 edited
- 3 copied
-
tags/1.1.1 (copied) (copied from simple-poll/trunk)
-
tags/1.1.1/readme.txt (copied) (copied from simple-poll/trunk/readme.txt) (2 diffs)
-
tags/1.1.1/toSendIt-SimplePoll.php (copied) (copied from simple-poll/trunk/toSendIt-SimplePoll.php) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/toSendIt-SimplePoll.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-poll/tags/1.1.1/readme.txt
r531381 r531382 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 53 53 == Changelog == 54 54 55 = 1.1.1 (2012-04-15) = 56 * Bugfix: the list of polls does not show anymore the number of preferences 57 55 58 = 1.1.0 (2012-04-15) = 56 59 * New: on each poll is available the list of the voters -
simple-poll/tags/1.1.1/toSendIt-SimplePoll.php
r531381 r531382 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.1. 04 * @version 1.1.1 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.1. 011 Version: 1.1.1 12 12 Author URI: http://tosend.it 13 13 */ … … 306 306 307 307 foreach($results as $row){ 308 $sql = "select count(id) from $ rates where poll_id = $row->id";308 $sql = "select count(id) from $tableRates where poll_id = $row->id"; 309 309 $rating = $wpdb->get_var($sql, 0,0); 310 310 ?> -
simple-poll/trunk/readme.txt
r531381 r531382 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 53 53 == Changelog == 54 54 55 = 1.1.1 (2012-04-15) = 56 * Bugfix: the list of polls does not show anymore the number of preferences 57 55 58 = 1.1.0 (2012-04-15) = 56 59 * New: on each poll is available the list of the voters -
simple-poll/trunk/toSendIt-SimplePoll.php
r531381 r531382 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.1. 04 * @version 1.1.1 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.1. 011 Version: 1.1.1 12 12 Author URI: http://tosend.it 13 13 */ … … 306 306 307 307 foreach($results as $row){ 308 $sql = "select count(id) from $ rates where poll_id = $row->id";308 $sql = "select count(id) from $tableRates where poll_id = $row->id"; 309 309 $rating = $wpdb->get_var($sql, 0,0); 310 310 ?>
Note: See TracChangeset
for help on using the changeset viewer.