aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-04-05 13:07:34 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-04-05 13:07:34 +0200
commit06b76831dece01f836c9d0a3cc32c3f59910fe60 (patch)
treed11b93214f5f06cde67e554166a695498506b1a0 /lib
parent2d18910d02d92098257b96766e5b89a780daab0b (diff)
Punycode spelling mistake
https://github.com/FreshRSS/FreshRSS/pull/820
Diffstat (limited to 'lib')
-rw-r--r--lib/lib_rss.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index bc5d6fc5b..c4f6a6011 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -51,15 +51,15 @@ function classAutoloader($class) {
spl_autoload_register('classAutoloader');
//</Auto-loading>
-function idn_to_punny($url) {
+function idn_to_puny($url) {
if (function_exists('idn_to_ascii')) {
$parts = parse_url($url);
if (!empty($parts['host'])) {
$idn = $parts['host'];
- $punny = idn_to_ascii($idn);
+ $puny = idn_to_ascii($idn);
$pos = strpos($url, $idn);
if ($pos !== false) {
- return substr_replace($url, $punny, $pos, strlen($idn));
+ return substr_replace($url, $puny, $pos, strlen($idn));
}
}
}
@@ -73,7 +73,7 @@ function checkUrl($url) {
if (!preg_match ('#^https?://#i', $url)) {
$url = 'http://' . $url;
}
- $url = idn_to_punny($url); //PHP bug #53474 IDN
+ $url = idn_to_puny($url); //PHP bug #53474 IDN
if (filter_var($url, FILTER_VALIDATE_URL) ||
(version_compare(PHP_VERSION, '5.3.3', '<') && (strpos($url, '-') > 0) && //PHP bug #51192
($url === filter_var($url, FILTER_SANITIZE_URL)))) {