Skip to content
Extraits de code Groupes Projets
Valider 965ff113 rédigé par Cyril Bay's avatar Cyril Bay
Parcourir les fichiers

Refs #703 Do not append the query string delimiter if there's no query string, thanks reetz.

git-svn-id: http://dev.piwik.org/svn/trunk@6283 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent ac8ad2c9
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -951,10 +951,9 @@ class Recorder(object):
stats.dates_recorded.add(hit.date.date())
if config.options.strip_query_string:
path = hit.path
else:
path = '%s%s%s' % (hit.path, config.options.query_string_delimiter, hit.query_string)
path = hit.path
if hit.query_string and not config.options.strip_query_string:
path += config.options.query_string_delimiter + hit.query_string
args = {
'rec': '1',
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter