Manual patch
Open applications/autowelcome/modules/admin/settings/settings.php
Find:
/* Save welcome topic */
if( isset( $values['aw_welcome_topic'] ) AND $values['aw_welcome_topic'] instanceof \IPS\forums\Topic )
{
$item = array_pop( $values['aw_welcome_topic'] );
$values['aw_welcome_topic'] = $item->tid;
}
Replace With:
/* Save welcome topic */
if( isset( $values['aw_welcome_topic'] ) AND $values['aw_welcome_topic'] )
{
$item = array_pop( $values['aw_welcome_topic'] );
$values['aw_welcome_topic'] = $item->tid;
}
else
{
$values['aw_welcome_topic'] = NULL;
}
Recommended Comments
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.