Changeset 520166
- Timestamp:
- 03/17/2012 12:42:20 PM (14 years ago)
- Location:
- simple-poll
- Files:
-
- 2 edited
- 3 copied
-
tags/1.0.2 (copied) (copied from simple-poll/trunk)
-
tags/1.0.2/readme.txt (copied) (copied from simple-poll/trunk/readme.txt) (2 diffs)
-
tags/1.0.2/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.2/readme.txt
r520165 r520166 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 47 47 * Removed unnecessary parameter to the saveOptions method 48 48 49 = 1.0.2 (2012-03-17) = 50 * Bugfix: waring on invalid pattern in preg_split 51 49 52 == Upgrade Notice == 50 53 -
simple-poll/tags/1.0.2/toSendIt-SimplePoll.php
r520165 r520166 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.0. 14 * @version 1.0.2 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. 111 Version: 1.0.2 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
r520165 r520166 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 8 8 Plugin that allow admin to create infinite polls and registered users to express just one preference per poll. … … 47 47 * Removed unnecessary parameter to the saveOptions method 48 48 49 = 1.0.2 (2012-03-17) = 50 * Bugfix: waring on invalid pattern in preg_split 51 49 52 == Upgrade Notice == 50 53 -
simple-poll/trunk/toSendIt-SimplePoll.php
r520165 r520166 2 2 /** 3 3 * @package Simple Polls 4 * @version 1.0. 14 * @version 1.0.2 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. 111 Version: 1.0.2 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.