Posted by kardave on November 11, 2008 at 11:12am
| Project: | TagTool |
| Version: | 5.x-1.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | needs review |
Issue Summary
On the settings page,
when the fieldset for a vocabulary is collapsed, it does not show the name of the vocabulary.
My solution was changing line 47 in tagtool.module from:
<?php
'#title' => t('Settings for %voc', array('%voc' => $voc->name)),
?>to:
<?php
'#title' => t('Settings for @voc', array('@voc' => $voc->name)),
?>Its just a minor disturbung bug.