Project:File (Field) Paths
Version:6.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

The strings of this module are not enclosed with the t() function

For example:

<?php
   
// Create path settings fieldset
   
$ffp['form_path'] = array(
     
'#type' => 'fieldset',
     
'#title' => 'Path settings',
     
'#collapsible' => TRUE,
     
'#collapsed' => TRUE
   
);
?>

Should be:

<?php
   
// Create path settings fieldset
   
$ffp['form_path'] = array(
     
'#type' => 'fieldset',
     
'#title' => t('Path settings'),
     
'#collapsible' => TRUE,
     
'#collapsed' => TRUE
   
);
?>

Comments

#1

Version:6.x-1.0» 6.x-1.x-dev

Will be fixed in next dev release.

#2

Status:active» fixed

Committed to HEAD

#3

Committed to DRUPAL-5

#4

Status:fixed» closed (fixed)

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