Changeset 520167
- Timestamp:
- 03/17/2012 12:44:52 PM (14 years ago)
- Location:
- simple-poll
- Files:
-
- 2 edited
- 3 copied
-
tags/1.0.3 (copied) (copied from simple-poll/trunk)
-
tags/1.0.3/readme.txt (copied) (copied from simple-poll/trunk/readme.txt) (2 diffs)
-
tags/1.0.3/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.0.3/readme.txt
r520166 r520167 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.0. 26 Stable tag: 1.0.3 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 50 50 * Bugfix: waring on invalid pattern in preg_split 51 51 52 = 1.0.3 (2012-03-17) = 53 * Bugfix: Used StdClass Object as associative array 54 52 55 == Upgrade Notice == 53 56 -
simple-poll/tags/1.0.3/toSendIt-SimplePoll.php
r520166 r520167 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.0. 24 * @version 1.0.3 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. 211 Version: 1.0.3 12 12 Author URI: http://tosend.it 13 13 */ … … 238 238 <ul> 239 239 <?php 240 $answers = preg_split("/\n/", $row ['answers']);240 $answers = preg_split("/\n/", $row->answers); 241 241 $sql_rates = "select answer_index, count(answer_index) voti from $rates where poll_id = $id group by answer_index"; 242 242 $results = $wpdb->get_results($sql_rates); -
simple-poll/trunk/readme.txt
r520166 r520167 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.0. 26 Stable tag: 1.0.3 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 50 50 * Bugfix: waring on invalid pattern in preg_split 51 51 52 = 1.0.3 (2012-03-17) = 53 * Bugfix: Used StdClass Object as associative array 54 52 55 == Upgrade Notice == 53 56 -
simple-poll/trunk/toSendIt-SimplePoll.php
r520166 r520167 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.0. 24 * @version 1.0.3 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. 211 Version: 1.0.3 12 12 Author URI: http://tosend.it 13 13 */ … … 238 238 <ul> 239 239 <?php 240 $answers = preg_split("/\n/", $row ['answers']);240 $answers = preg_split("/\n/", $row->answers); 241 241 $sql_rates = "select answer_index, count(answer_index) voti from $rates where poll_id = $id group by answer_index"; 242 242 $results = $wpdb->get_results($sql_rates);
Note: See TracChangeset
for help on using the changeset viewer.