Plugin Directory

Changeset 520166


Ignore:
Timestamp:
03/17/2012 12:42:20 PM (14 years ago)
Author:
tosend.it
Message:

Version 1.0.2 released

Location:
simple-poll
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • simple-poll/tags/1.0.2/readme.txt

    r520165 r520166  
    44Requires at least: 3.3
    55Tested up to: 3.3.1
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77
    88Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
     
    4747* Removed unnecessary parameter to the saveOptions method
    4848
     49= 1.0.2 (2012-03-17) =
     50* Bugfix: waring on invalid pattern in preg_split
     51
    4952== Upgrade Notice ==
    5053
  • simple-poll/tags/1.0.2/toSendIt-SimplePoll.php

    r520165 r520166  
    22/**
    33 * @package Simple Polls
    4  * @version 1.0.1
     4 * @version 1.0.2
    55 */
    66/*
     
    99Description: Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
    1010Author: toSend.it di Luisa Mara
    11 Version: 1.0.1
     11Version: 1.0.2
    1212Author URI: http://tosend.it
    1313*/
     
    238238                <ul>
    239239                    <?php
    240                     $answers = preg_split("\n", $row['answers']);
     240                    $answers = preg_split("/\n/", $row['answers']);
    241241                    $sql_rates = "select answer_index, count(answer_index) voti from $rates where poll_id = $id group by answer_index";
    242242                    $results = $wpdb->get_results($sql_rates);
  • simple-poll/trunk/readme.txt

    r520165 r520166  
    44Requires at least: 3.3
    55Tested up to: 3.3.1
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77
    88Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
     
    4747* Removed unnecessary parameter to the saveOptions method
    4848
     49= 1.0.2 (2012-03-17) =
     50* Bugfix: waring on invalid pattern in preg_split
     51
    4952== Upgrade Notice ==
    5053
  • simple-poll/trunk/toSendIt-SimplePoll.php

    r520165 r520166  
    22/**
    33 * @package Simple Polls
    4  * @version 1.0.1
     4 * @version 1.0.2
    55 */
    66/*
     
    99Description: Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
    1010Author: toSend.it di Luisa Mara
    11 Version: 1.0.1
     11Version: 1.0.2
    1212Author URI: http://tosend.it
    1313*/
     
    238238                <ul>
    239239                    <?php
    240                     $answers = preg_split("\n", $row['answers']);
     240                    $answers = preg_split("/\n/", $row['answers']);
    241241                    $sql_rates = "select answer_index, count(answer_index) voti from $rates where poll_id = $id group by answer_index";
    242242                    $results = $wpdb->get_results($sql_rates);
Note: See TracChangeset for help on using the changeset viewer.