RSS import does not take into account max title length setting
Submitted AndyMillne, Aug 09 2012 12:51 PM | Last updated Aug 09 2012 12:52 PM
/admin/applications/forums/modules_admin/rss/import.php line 914
should be...
$this->post->setTopicTitle( IPSText::mbsubstr( $topic_item['title'], 0, 250 ) );
should be...
$this->post->setTopicTitle( IPSText::mbsubstr( $topic_item['title'], 0, $this->settings['topic_title_max_len'] ) );
| Status: | Fixed |
| Version: | 3.3.4 |
| Fixed In: | 3.3.5 |











1 Comments
Updating Status to: Fixed
Updating Version to: 3.3.4
-