Quote:
Originally Posted by BlessedFWI
Any help would be much appreciated.
Thanks!
|
'pinterest' => $postinfo['field' . $vbulletin->options['pinterest']], // Pinterest field
'soundcloud' => $postinfo['field' . $vbulletin->options['soundcloud']], // Soundcloud field
should be
'pinterest' => $post['field' . $vbulletin->options['pinterest']], // Pinterest field
'soundcloud' => $post['field' . $vbulletin->options['soundcloud']], // Soundcloud field
'pinterest' => $userinfo['field' . $vbulletin->options['pinterest']], // Pinterest field
'soundcloud' => $userinfo['field' . $vbulletin->options['soundcloud']], // Soundcloud field
should be
'pinterest' => $post['field' . $vbulletin->options['pinterest']], // Pinterest field
'soundcloud' => $post['field' . $vbulletin->options['soundcloud']], // Soundcloud field