Plugin Directory

Changeset 189781


Ignore:
Timestamp:
01/05/2010 12:54:07 AM (16 years ago)
Author:
binnyva
Message:

New version of the plugin/changed the stable tage number

Location:
surveys/trunk
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • surveys/trunk/export.php

    r178853 r189781  
    44include('wpframe.php');
    55
    6 // Export data as a CSV File
    76// Export data as a CSV File
    87$survey_name = $wpdb->get_var($wpdb->prepare("SELECT name FROM {$wpdb->prefix}surveys_survey WHERE ID=%d", $_REQUEST['survey']));
  • surveys/trunk/export_choose.php

    r178853 r189781  
    2929?>
    3030<input type="checkbox" name="<?php echo $option ?>" value="1" id="<?php echo $option ?>" checked="checked" />
    31 <label for="<?=$option?>"><?php echo($title) ?></label><br />
     31<label for="<?php echo $option?>"><?php echo($title) ?></label><br />
    3232
    3333<?php
  • surveys/trunk/readme.txt

    r178853 r189781  
    55Requires at least: 2.5
    66Tested up to: 2.8
    7 Stable tag: 1.01.5
     7Stable tag: 1.01.6
    88
    99The Surveys WordPress plugin lets you add surveys to your blog. You can let the vistors take surveys and see the result from the admin side.
  • surveys/trunk/surveys.php

    r178853 r189781  
    44Plugin URI: http://www.bin-co.com/tools/wordpress/plugins/surveys/
    55Description: The Surveys WordPress plugin lets you add surveys to your blog. You can let the vistors take surveys and see the result from the admin side.
    6 Version: 1.01.5
     6Version: 1.01.6
    77Author: Binny V A
    88Author URI: http://www.binnyva.com/
     
    6666    add_option('surveys_insert_csv_header', 1);
    6767   
    68     $database_version = '3';
     68    $database_version = '4';
    6969    $installed_db = get_option('surveys_db_version');
    7070   
     
    7575                    ID int(11) unsigned NOT NULL auto_increment,
    7676                    question_ID int(11) unsigned NOT NULL,
    77                     answer varchar(255) NOT NULL,
     77                    answer varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
    7878                    sort_order int(3) NOT NULL,
    7979                    INDEX ( question_ID ),
     
    8383                    ID int(11) unsigned NOT NULL auto_increment,
    8484                    survey_ID int(11) unsigned NOT NULL,
    85                     question mediumtext NOT NULL,
     85                    question mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
    8686                    allow_user_answer int(1) NOT NULL default '0',
    8787                    allow_multiple_answers int(2) NOT NULL default '0',
     
    9393                    ID int(11) unsigned NOT NULL auto_increment,
    9494                    survey_ID int(11) unsigned NOT NULL,
    95                     name varchar(50) NOT NULL,
    96                     email varchar(50) NOT NULL,
     95                    name varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
     96                    email varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
    9797                    added_on datetime NOT NULL,
    9898                    INDEX ( survey_ID ),
     
    104104                    answer_ID int(11) unsigned NOT NULL,
    105105                    question_ID INT( 11 ) UNSIGNED NOT NULL,
    106                     user_answer VARCHAR( 255 ) NOT NULL,
     106                    user_answer VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
    107107                    INDEX ( question_ID ),
    108108                    INDEX ( answer_ID ),
     
    112112                CREATE TABLE {$wpdb->prefix}surveys_survey (
    113113                    ID int(11) unsigned NOT NULL auto_increment,
    114                     name varchar(50) NOT NULL,
    115                     description mediumtext NOT NULL,
    116                     final_screen mediumtext NOT NULL,
     114                    name varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
     115                    description mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
     116                    final_screen mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
    117117                    status enum('1','0') NOT NULL default '0',
    118118                    added_on datetime NOT NULL,
Note: See TracChangeset for help on using the changeset viewer.