From 31580048187a52b4174cb6877e613f277b9d59a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Wed, 19 Dec 2018 16:16:38 +0100 Subject: [PATCH] Use correct url argument --- .../ext/ep_theme/Resources/Private/Assets/js/_app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js index 9396e1e4..5cd97587 100644 --- a/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js +++ b/web/typo3conf/ext/ep_theme/Resources/Private/Assets/js/_app.js @@ -346,11 +346,11 @@ new Vue({ if (!url) { return; } - if (url.indexOf('pa=') !== -1) { + if (url.indexOf('agenturcode=') !== -1) { return; } const separator = url.indexOf('?') === -1 ? '?' : '&'; - url += separator + 'pa=' + paCode; + url += separator + 'agenturcode=' + paCode; $(this).attr('href', url); }); }