Changeset 1089782
- Timestamp:
- 02/14/2015 10:08:06 AM (11 years ago)
- Location:
- broken-link-manager/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
wblm.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
broken-link-manager/trunk/readme.txt
r1054974 r1089782 4 4 Requires at least: 3.0 5 5 Tested up to: 4.1 6 Stable tag: 0.3. 36 Stable tag: 0.3.4 7 7 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8NYR3F4RVTBHS 8 8 … … 27 27 28 28 29 > <strong>Language</strong><br> 30 > [- English (Hülya Kocak)](http://brokenlinkmanager.com) 31 > [- Deutsch (Berkant Kacar)](http://beqo.de) 32 > [- Türkçe (Hüseyin Kocak](http://k-78.de) 33 29 34 == Installation == 30 35 … … 40 45 41 46 == Changelog == 47 48 49 = 0.3.4 = 50 * Optimized plugin install (Database table query) 51 * Added German Language 52 * Added Turkish Language 53 * Added Language Master File (wblm.pot) 54 If you send your language to translate. We were very pleased and will be added along with your name. 42 55 43 56 -
broken-link-manager/trunk/wblm.php
r1054974 r1089782 4 4 Plugin URI: https://wordpress.org/plugins/broken-link-manager 5 5 Description: WBLM -> Wordpress Broken Link Manager. This plugin helps you check, organise and monitor your broken backlinks. 6 Version: 0.3. 36 Version: 0.3.4 7 7 Author: Hüseyin Kocak 8 8 Author URI: http://k-78.de … … 118 118 * DATABANKS 119 119 *************************************************************************************/ 120 function create_wblm_table(){ 121 echo 'TABLE_WBLM : ' . TABLE_WBLM; 122 120 123 $sql_wblm = "CREATE TABLE IF NOT EXISTS " . TABLE_WBLM . " ( 121 124 `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , … … 142 145 ) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci "; 143 146 $wpdb->query($sql_wblm_log); 144 145 if (MYSQL_VER < 3){ 146 $sql_wblm_add_http_statu = "ALTER TABLE `". TABLE_WBLM ."` ADD `http_statu` INT NULL AFTER `type`"; 147 $sql_wblm_log_add_domain = "ALTER TABLE `". TABLE_WBLM_LOG ."` ADD `domain` VARCHAR(200) NOT NULL AFTER `date`"; 148 $wpdb->query($sql_wblm_add_http_statu); 149 $wpdb->query($sql_wblm_log_add_domain); 150 update_option( wblm_mysql_ver, '3' ); 151 define( 'MYSQL_VER', get_option('wblm_mysql_ver')); 152 } 153 154 147 } 148 if (MYSQL_VER < 3){ 149 $sql_wblm_add_http_statu = "ALTER TABLE `". TABLE_WBLM ."` ADD `http_statu` INT NULL AFTER `type`"; 150 $sql_wblm_log_add_domain = "ALTER TABLE `". TABLE_WBLM_LOG ."` ADD `domain` VARCHAR(200) NOT NULL AFTER `date`"; 151 $wpdb->query($sql_wblm_add_http_statu); 152 $wpdb->query($sql_wblm_log_add_domain); 153 update_option( wblm_mysql_ver, '3' ); 154 define( 'MYSQL_VER', get_option('wblm_mysql_ver')); 155 } 155 156 /************************************************************************************* 156 157 * LOG PATH (SIMDILIK SADECE KLASOR OLUSTURULUYOR) … … 228 229 define( 'DEFAULT_URL', get_option('wblm_default_url')); 229 230 } 231 register_activation_hook( __FILE__, 'create_wblm_table' ); 232 230 233 /************************************************************************************* 231 234 * FONCTIONS
Note: See TracChangeset
for help on using the changeset viewer.