Plugin Directory

Changeset 1717068


Ignore:
Timestamp:
08/21/2017 02:28:40 PM (9 years ago)
Author:
PowieT
Message:

whois server updates

Location:
powies-whois
Files:
10 added
2 edited

Legend:

Unmodified
Added
Removed
  • powies-whois/trunk/powies-whois.php

    r1686031 r1717068  
    44Plugin URI: https://powie.de/wordpress/whois/
    55Description: Domain WHOIS Shortcode Plugin
    6 Version: 0.9.25
     6Version: 0.9.26
    77License: GPLv2
    88Author: Thomas Ehrhardt
     
    1313
    1414//Define some stuff
    15 define( 'PWHOIS_VERSION', '0.9.24');
     15define( 'PWHOIS_VERSION', '0.9.26');
    1616define( 'PWHOIS_PLUGIN_DIR', dirname( plugin_basename( __FILE__ ) ) );
    1717load_plugin_textdomain( 'pwhois', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
     
    161161        $msg = '<p>'.$msg.'</p>';
    162162        if (get_option('show-whois-output') == 1) {
    163             $msg.=get_option('before-whois-output').nl2br($result).get_option('after-whois-output');
     163            $msg.=get_option('before-whois-output').nl2br(utf8_encode($result)).get_option('after-whois-output');
    164164        }
    165165        $response = json_encode( array( 'success' => true , 'msg' => $msg ) );
     
    200200                $out = "";
    201201        while(!feof($fp)){
    202             $out .= fgets($fp);
     202            $out .= fgetss($fp);
    203203        }
    204204        fclose($fp);
     
    301301"hn"                =>  array("whois2.afilias-grs.net"),
    302302"hr"                =>  array("whois.ripe.net"),
    303 "hu"                =>  array("whois.ripe.net"),
     303"hu"                =>  array("whois.nic.hu"),
    304304"il"                =>  array("whois.isoc.org.il"),
    305305"int"               =>  array("whois.isi.edu"),
  • powies-whois/trunk/readme.txt

    r1686044 r1717068  
    44Tags: domain,lookup,whois,shortcode,free
    55Requires at least: 3.0
    6 Tested up to: 4.8.0
    7 Stable tag: 0.9.25
     6Tested up to: 4.8.2
     7Stable tag: 0.9.26
    88License: GPLv2
    99
     
    5555
    5656== Changelog ==
     57= 0.9.26 =
     58* bugfix on handling outputs from whois servers
     59* whois server list update
     60
    5761= 0.9.23 =
    5862* adding default outputs
Note: See TracChangeset for help on using the changeset viewer.