mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-02 03:08:53 +00:00
Fix low res images in in theatres page.
This commit is contained in:
@@ -117,7 +117,7 @@ class TmuxOutput extends Tmux
|
||||
$buffer = '';
|
||||
$state = ($this->runVar['settings']['is_running'] == 1) ? 'Running' : 'Disabled';
|
||||
//$version = $this->_tvers . 'r' . $this->_vers;
|
||||
$tversion = '0.5r01134';
|
||||
$tversion = '0.5r01135';
|
||||
|
||||
$buffer .= sprintf($this->tmpMasks[2],
|
||||
"Monitor $state v$tversion @ $this->_tvers [" . $this->_vers ."]: ",
|
||||
|
||||
@@ -63,7 +63,7 @@ if ($data["info"] == "") {
|
||||
function replace_quality($imageURL, $userSetting)
|
||||
{
|
||||
$types = array('thumbnail' => '_tmb.', 'profile' => '_pro.', 'detailed' => '_det.', 'original' => '_ori.');
|
||||
return str_replace('_tmb.', $types[$userSetting], $imageURL);
|
||||
return preg_replace("#http://resizing\.flixster\.com(/[\w=+-]+){3}\.cloudfront\.net#i", "https://content6.flixster.com", str_replace('_tmb.', $types[$userSetting], $imageURL));
|
||||
}
|
||||
|
||||
$page->content = $page->smarty->fetch('upcoming.tpl');
|
||||
|
||||
Reference in New Issue
Block a user