Changeset 3192699
- Timestamp:
- 11/20/2024 12:02:52 AM (17 months ago)
- Location:
- hipaatizer
- Files:
-
- 2 edited
-
tags/1.3.5/uninstall.php (modified) (1 diff)
-
trunk/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hipaatizer/tags/1.3.5/uninstall.php
r3192694 r3192699 17 17 global $wpdb; 18 18 $table_name = $wpdb->prefix . 'hipaatizer'; 19 $wpdb->query("DROP TABLE IF EXISTS $table_name"); 20 } 19 $wpdb->query(sprintf( 20 "DROP TABLE IF EXISTS `%s`", 21 esc_sql($wpdb->prefix . 'hipaatizer') 22 )); 23 } 21 24 22 25 if (current_user_can('delete_plugins')) { -
hipaatizer/trunk/uninstall.php
r3192694 r3192699 17 17 global $wpdb; 18 18 $table_name = $wpdb->prefix . 'hipaatizer'; 19 $wpdb->query("DROP TABLE IF EXISTS $table_name"); 20 } 19 $wpdb->query(sprintf( 20 "DROP TABLE IF EXISTS `%s`", 21 esc_sql($wpdb->prefix . 'hipaatizer') 22 )); 23 } 21 24 22 25 if (current_user_can('delete_plugins')) {
Note: See TracChangeset
for help on using the changeset viewer.