Skip to content
Code-Schnipsel Gruppen Projekte
Commit 83727394 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: category opening bug

Double click if QUIQQER_SITE.url had a host. This happens if the project has multiple hosts. This caused an incorrect category to be opened
Übergeordneter 58156ac2
No related branches found
No related tags found
2 Merge Requests!65fix: category opening bug,!50Update 'next-3.x' with latest changes from 'main'
Pipeline #16003 bestanden mit Phase
in 1 Minute und 48 Sekunden
......@@ -205,6 +205,10 @@ define('package/quiqqer/frontend-users/bin/frontend/controls/profile/Profile', [
var pathName = window.location.pathname,
url = QUIQQER_SITE.url + '/' + this.$category + '/' + this.$settings;
if (url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1) {
pathName = window.location.href;
}
if (!this.$settings || !this.$category) {
return;
}
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren