Changeset 2880713
- Timestamp:
- 03/15/2023 05:47:42 PM (3 years ago)
- Location:
- wiflydemofeedbackcomposer
- Files:
-
- 26 added
- 2 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/README.md (added)
-
tags/1.0.3/admin (added)
-
tags/1.0.3/admin/class.wifly-demo.admin.php (added)
-
tags/1.0.3/app (added)
-
tags/1.0.3/app/class.wifly-demo-feedback-composer.php (added)
-
tags/1.0.3/ext (added)
-
tags/1.0.3/ext/bootstrap-icons.css (added)
-
tags/1.0.3/ext/bootstrap.css (added)
-
tags/1.0.3/ext/bootstrap.js (added)
-
tags/1.0.3/index.php (added)
-
tags/1.0.3/providers (added)
-
tags/1.0.3/providers/class.feedback.provider.php (added)
-
tags/1.0.3/public (added)
-
tags/1.0.3/public/class.wifly-demo.public.php (added)
-
tags/1.0.3/readme.txt (added)
-
tags/1.0.3/static (added)
-
tags/1.0.3/static/images (added)
-
tags/1.0.3/static/images/feedback_image.png (added)
-
tags/1.0.3/static/images/settings_image.png (added)
-
tags/1.0.3/templates (added)
-
tags/1.0.3/templates/admin-page.php (added)
-
tags/1.0.3/templates/faq-page.php (added)
-
tags/1.0.3/templates/settings-page.php (added)
-
tags/1.0.3/uninstall.php (added)
-
tags/1.0.3/wifly-demo-feedback-composer.php (added)
-
trunk/app/class.wifly-demo-feedback-composer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wiflydemofeedbackcomposer/trunk/app/class.wifly-demo-feedback-composer.php
r2865587 r2880713 7 7 $wpdb->query("create table if not exists {$wpdb->prefix}feedback_category( 8 8 `id` int primary key auto_increment, 9 `title` text 10 )"); 9 `title` text) 10 CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci 11 "); 11 12 $wpdb->query("create table if not exists {$wpdb->prefix}feedback( 12 13 `id` int primary key auto_increment, … … 14 15 `category_id` int, 15 16 `value` text, 16 foreign key (category_id) references {$wpdb->prefix}feedback_category(`id`) 17 )"); 17 foreign key (category_id) references {$wpdb->prefix}feedback_category(`id`)) 18 CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci 19 "); 18 20 } 19 21 -
wiflydemofeedbackcomposer/trunk/readme.txt
r2865604 r2880713 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.