Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: TheListener on July 21, 2009, 08:39:38 PM

Title: Settings Error
Post by: TheListener on July 21, 2009, 08:39:38 PM

Undefined index: recent_poster_width
Settings.template.php

The guilty line is:

==>165:  'label' => $txt['recent_poster_width'],
Title: Re: Settings Error
Post by: Arantor on July 21, 2009, 09:55:42 PM
It's a missing string inside one of the theme language files, but it's going to be related to a mod, as it's not something in the core SMF setup.

What should that read? You can then just add it into Themes/yourtheme/languages/Modifications.english.php:

$txt['recent_poster_width'] = 'what this string should say';
Title: Re: Settings Error
Post by: JBlaze on July 21, 2009, 09:59:47 PM
And, don't forget to clear your cache after you add it.

Admin -> Forum Maintenance -> Routine -> Clear Cache
Title: Re: Settings Error
Post by: Bulakbol on July 29, 2009, 05:48:52 AM
Add this txt string to your_theme/Settings.english.php
$txt['recent_poster_width'] = 'Select width for recent poster window.';