Merge branch 'FreshRSS/dev' into dev

pull/1010/head
Alexandre Alapetite 9 years ago
commit cd6173725f
  1. 2
      lib/Minz/Extension.php
  2. 4
      lib/Minz/Url.php

@ -168,7 +168,7 @@ class Minz_Extension {
$url = '/ext.php?f=' . $file_name_url .
'&t=' . $type .
'&' . $mtime;
return Minz_Url::display($url);
return Minz_Url::display($url, 'php');
}
/**

@ -31,8 +31,10 @@ class Minz_Url {
if ($isArray) {
$url_string .= self::printUri($url, $encodage);
} else {
} elseif ($encodage === 'html') {
$url_string = Minz_Helper::htmlspecialchars_utf8($url_string . $url);
} else {
$url_string .= $url;
}
return $url_string;

Loading…
Cancel
Save