Plugin Directory

Changeset 1089782


Ignore:
Timestamp:
02/14/2015 10:08:06 AM (11 years ago)
Author:
flashcentury
Message:

Ver : 0.3.4

Location:
broken-link-manager/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • broken-link-manager/trunk/readme.txt

    r1054974 r1089782  
    44Requires at least: 3.0
    55Tested up to: 4.1
    6 Stable tag: 0.3.3
     6Stable tag: 0.3.4
    77Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8NYR3F4RVTBHS
    88
     
    2727
    2828
     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
    2934== Installation ==
    3035
     
    4045
    4146== 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)
     54If you send your language to translate. We were very pleased and will be added along with your name.
    4255
    4356
  • broken-link-manager/trunk/wblm.php

    r1054974 r1089782  
    44Plugin URI: https://wordpress.org/plugins/broken-link-manager
    55Description: WBLM -> Wordpress Broken Link Manager. This plugin helps you check, organise and monitor your broken backlinks.
    6 Version: 0.3.3
     6Version: 0.3.4
    77Author: Hüseyin Kocak
    88Author URI: http://k-78.de
     
    118118 *  DATABANKS
    119119 *************************************************************************************/
     120function create_wblm_table(){
     121    echo 'TABLE_WBLM : ' . TABLE_WBLM;
     122   
    120123    $sql_wblm = "CREATE TABLE IF NOT EXISTS " . TABLE_WBLM . " (
    121124    `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
     
    142145    ) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci ";
    143146    $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}
     148if (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}   
    155156/*************************************************************************************
    156157 *  LOG PATH (SIMDILIK SADECE KLASOR OLUSTURULUYOR)
     
    228229    define( 'DEFAULT_URL', get_option('wblm_default_url'));
    229230}
     231register_activation_hook( __FILE__, 'create_wblm_table' );
     232
    230233/*************************************************************************************
    231234 *  FONCTIONS
Note: See TracChangeset for help on using the changeset viewer.