Changeset 2161970
- Timestamp:
- 09/24/2019 09:42:57 AM (7 years ago)
- Location:
- team-118group-agent/trunk
- Files:
-
- 3 edited
-
modules/hooks.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp-tga-filter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
team-118group-agent/trunk/modules/hooks.php
r2154268 r2161970 208 208 209 209 if( count($res) == 0 ){ 210 211 // check if table exists 212 require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); 213 214 $table_name = 'wtf_404_log'; 215 $table_name = $wpdb->prefix.$table_name; 216 217 218 //$wpdb->query("DROP TABLE ".$table_name ); 219 220 $sql = "CREATE TABLE IF NOT EXISTS $table_name ( 221 `id` mediumint(9) NOT NULL AUTO_INCREMENT, 222 `request_url` longtext NOT NULL , 223 `refferal_url` longtext NOT NULL, 224 `timestamp` longtext NOT NULL, 225 `redirect_url` longtext NOT NULL, 226 227 UNIQUE KEY `id` (`id`) 228 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"; 229 230 dbDelta($sql); 231 /* finsih */ 232 210 233 $res = $wpdb->insert( 211 234 $table_name, -
team-118group-agent/trunk/readme.txt
r2160077 r2161970 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 1.5. 310 Version: 1.5. 39 Stable tag: 1.5.4 10 Version: 1.5.4 11 11 12 12 Performs a variety of functions to assist your web designer with wordpress data and system care -
team-118group-agent/trunk/wp-tga-filter.php
r2160077 r2161970 3 3 Plugin Name: Team 118GROUP Agent 4 4 Description: Team 118GROUP Web Design Plugin to assist with monitoring your WordPress installation and assisting with system care 5 Version: 1.5. 35 Version: 1.5.4 6 6 Author: Team118GROUP 7 7 Author URI: http://www.118group.com 8 Stable tag: 1.5. 38 Stable tag: 1.5.4 9 9 */ 10 10 … … 56 56 57 57 58 $wpdb->query("DROP TABLE ".$table_name );58 //$wpdb->query("DROP TABLE ".$table_name ); 59 59 60 60 $sql = "CREATE TABLE IF NOT EXISTS $table_name (
Note: See TracChangeset
for help on using the changeset viewer.