Changeset 1717068
- Timestamp:
- 08/21/2017 02:28:40 PM (9 years ago)
- Location:
- powies-whois
- Files:
-
- 10 added
- 2 edited
-
tags/0.9.26 (added)
-
tags/0.9.26/languages (added)
-
tags/0.9.26/languages/pwhois-de_DE.mo (added)
-
tags/0.9.26/languages/pwhois-de_DE.po (added)
-
tags/0.9.26/languages/pwhois-ru_RU.mo (added)
-
tags/0.9.26/languages/pwhois-ru_RU.po (added)
-
tags/0.9.26/powies-whois.php (added)
-
tags/0.9.26/pwhois.js (added)
-
tags/0.9.26/pwhois_settings.php (added)
-
tags/0.9.26/readme.txt (added)
-
trunk/powies-whois.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
powies-whois/trunk/powies-whois.php
r1686031 r1717068 4 4 Plugin URI: https://powie.de/wordpress/whois/ 5 5 Description: Domain WHOIS Shortcode Plugin 6 Version: 0.9.2 56 Version: 0.9.26 7 7 License: GPLv2 8 8 Author: Thomas Ehrhardt … … 13 13 14 14 //Define some stuff 15 define( 'PWHOIS_VERSION', '0.9.2 4');15 define( 'PWHOIS_VERSION', '0.9.26'); 16 16 define( 'PWHOIS_PLUGIN_DIR', dirname( plugin_basename( __FILE__ ) ) ); 17 17 load_plugin_textdomain( 'pwhois', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); … … 161 161 $msg = '<p>'.$msg.'</p>'; 162 162 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'); 164 164 } 165 165 $response = json_encode( array( 'success' => true , 'msg' => $msg ) ); … … 200 200 $out = ""; 201 201 while(!feof($fp)){ 202 $out .= fgets ($fp);202 $out .= fgetss($fp); 203 203 } 204 204 fclose($fp); … … 301 301 "hn" => array("whois2.afilias-grs.net"), 302 302 "hr" => array("whois.ripe.net"), 303 "hu" => array("whois. ripe.net"),303 "hu" => array("whois.nic.hu"), 304 304 "il" => array("whois.isoc.org.il"), 305 305 "int" => array("whois.isi.edu"), -
powies-whois/trunk/readme.txt
r1686044 r1717068 4 4 Tags: domain,lookup,whois,shortcode,free 5 5 Requires at least: 3.0 6 Tested up to: 4.8. 07 Stable tag: 0.9.2 56 Tested up to: 4.8.2 7 Stable tag: 0.9.26 8 8 License: GPLv2 9 9 … … 55 55 56 56 == Changelog == 57 = 0.9.26 = 58 * bugfix on handling outputs from whois servers 59 * whois server list update 60 57 61 = 0.9.23 = 58 62 * adding default outputs
Note: See TracChangeset
for help on using the changeset viewer.