Posted by elfur on January 1, 2009 at 11:17pm
| Project: | Node2Node |
| Version: | 6.x-1.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
There's a minor typing error in the admin settings page.
At the bottom where you can set the names of Parent and Child links. Where there's supposed to be the phrase "child links" - the text reads "parent links".
Lines #94-98, the error is in line 96:
$form['terminology']['node2node_childlinks'] = array(
'#type' => 'textfield',
'#title' => 'Parent links', <-- this should read 'Child links'
'#default_value' => variable_get('node2node_childlinks', 'Child links'),
);Us foreigners would also appreciate better usage of t() strings, for translations :)