Closed (fixed)
Project:
Localization server
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Mar 2009 at 10:50 UTC
Updated:
27 Mar 2009 at 11:10 UTC
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.
| Comment | File | Size | Author |
|---|---|---|---|
| pages.inc_.patch | 849 bytes | havran |
Comments
Comment #1
gábor hojtsyRight! Good spot! Committed, thanks.