Needs review
Project:
Localizer
Version:
5.x-3.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 May 2008 at 14:52 UTC
Updated:
25 May 2008 at 14:52 UTC
Hello!
In a view's search criteria dropdown a "Node: language" option provided by localizer was not showing, instead there were a blank line.
This is due to the field name ("language") and sorts array key ("name") were swapped:
"sorts" => array(
- "name" => array('language' => "Node : Language")
- ),
+ "language" => array(
+ 'name' => t("Node: Language"),
+ 'help' => t('This will sort by language.')
+ )
+ ),
Also in this patch:
Hope it helps.
| Comment | File | Size | Author |
|---|---|---|---|
| localizerviews.module-lang_code_and_cleanup-pastk.patch | 3.66 KB | pastk |