Changeset 189781
- Timestamp:
- 01/05/2010 12:54:07 AM (16 years ago)
- Location:
- surveys/trunk
- Files:
-
- 3 added
- 4 edited
-
export.php (modified) (1 diff)
-
export_choose.php (modified) (1 diff)
-
lang (added)
-
lang/default.mo (added)
-
lang/default.po (added)
-
readme.txt (modified) (1 diff)
-
surveys.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
surveys/trunk/export.php
r178853 r189781 4 4 include('wpframe.php'); 5 5 6 // Export data as a CSV File7 6 // Export data as a CSV File 8 7 $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 29 29 ?> 30 30 <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 /> 32 32 33 33 <?php -
surveys/trunk/readme.txt
r178853 r189781 5 5 Requires at least: 2.5 6 6 Tested up to: 2.8 7 Stable tag: 1.01. 57 Stable tag: 1.01.6 8 8 9 9 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. -
surveys/trunk/surveys.php
r178853 r189781 4 4 Plugin URI: http://www.bin-co.com/tools/wordpress/plugins/surveys/ 5 5 Description: 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. 56 Version: 1.01.6 7 7 Author: Binny V A 8 8 Author URI: http://www.binnyva.com/ … … 66 66 add_option('surveys_insert_csv_header', 1); 67 67 68 $database_version = ' 3';68 $database_version = '4'; 69 69 $installed_db = get_option('surveys_db_version'); 70 70 … … 75 75 ID int(11) unsigned NOT NULL auto_increment, 76 76 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, 78 78 sort_order int(3) NOT NULL, 79 79 INDEX ( question_ID ), … … 83 83 ID int(11) unsigned NOT NULL auto_increment, 84 84 survey_ID int(11) unsigned NOT NULL, 85 question mediumtext NOT NULL,85 question mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, 86 86 allow_user_answer int(1) NOT NULL default '0', 87 87 allow_multiple_answers int(2) NOT NULL default '0', … … 93 93 ID int(11) unsigned NOT NULL auto_increment, 94 94 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, 97 97 added_on datetime NOT NULL, 98 98 INDEX ( survey_ID ), … … 104 104 answer_ID int(11) unsigned NOT NULL, 105 105 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, 107 107 INDEX ( question_ID ), 108 108 INDEX ( answer_ID ), … … 112 112 CREATE TABLE {$wpdb->prefix}surveys_survey ( 113 113 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, 117 117 status enum('1','0') NOT NULL default '0', 118 118 added_on datetime NOT NULL,
Note: See TracChangeset
for help on using the changeset viewer.