On translations overview page (translate/projects/[projecturi]) there is incorrect links in to project translation page. Problem is in code in file `l10n_server/l10n_community/pages.inc`where is on line 241:

          array('data' => l($language->name .' ('. $langcode .')', 'translate/languages/'. $langcode .'/view', array(), 'project='. $uri), 'class' => 'rowhead'),

we need

          array('data' => l($language->name .' ('. $langcode .')', 'translate/languages/'. $langcode .'/view', array('query' => 'project='. $uri)), 'class' => 'rowhead'),

Patch attached.

CommentFileSizeAuthor
pages.inc_.patch849 byteshavran

Comments

gábor hojtsy’s picture

Status: Needs review » Fixed

Right! Good spot! Committed, thanks.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.