item description not truncating
richardtmorgan - September 11, 2009 - 07:28
| Project: | FileField Podcaster |
| Version: | 6.x-0.7 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
There's a typo in ffpc_plugin_row_podcast.php on line 74
if (strlen($stripped_item_tex) > 255) {
$item_subtitle = substr($stripped_item_text, 0, 252) .'...';
}the string name is
$stripped_item_text not $stripped_item_tex (missing final t of text)
