Rename Smarty variable to avoid confusion

This commit is contained in:
Pierre Rudloff 2017-05-31 09:32:11 +02:00
parent 4ee72d1629
commit a2dc71753e
2 changed files with 9 additions and 9 deletions

View file

@ -110,13 +110,13 @@ class FrontController
$response,
'index.tpl',
[
'config' => $this->config,
'class' => 'index',
'description' => 'Easily download videos from Youtube, Dailymotion, Vimeo and other websites.',
'domain' => $uri->getScheme().'://'.$uri->getAuthority(),
'canonical' => $this->getCanonicalUrl($request),
'locales' => $this->localeManager->getSupportedLocales(),
'locale' => $this->localeManager->getLocale(),
'config' => $this->config,
'class' => 'index',
'description' => 'Easily download videos from Youtube, Dailymotion, Vimeo and other websites.',
'domain' => $uri->getScheme().'://'.$uri->getAuthority(),
'canonical' => $this->getCanonicalUrl($request),
'supportedLocales' => $this->localeManager->getSupportedLocales(),
'locale' => $this->localeManager->getLocale(),
]
);