In
/includes/ucp/ucp_profile.php
Code: Select all
$config['allow_sig_img'],
Code: Select all
'IMG_STATUS' => ($config['allow_sig_img']) ? $user->lang['IMAGES_ARE_ON'] : $user->lang['IMAGES_ARE_OFF'],
Code: Select all
'S_BBCODE_IMG' => ($config['allow_sig_img']) ? true : false,
Code: Select all
$img_status = ($config['auth_img_pm'] && $auth->acl_get('u_pm_img')) ? true : false;
Code: Select all
$img_status,
Code: Select all
'IMG_STATUS' => ($img_status) ? $user->lang['IMAGES_ARE_ON'] : $user->lang['IMAGES_ARE_OFF'],
Code: Select all
'S_BBCODE_IMG' => $img_status,
I'm still missing something...
I tested it again, and the replacement img BBCode isn't working yet, old img script is still interfering. I tried editing
/adm/style/acp_posting_buttons.html
/template/posting_buttons.html
again, and that still causes the BBCodes to become displaced and replacement img BBCode still isn't working. So I still can't remove
Code: Select all
'[img]','[/img]',
I already started combing through every page one at a time, doing the process of elimination to make it easier to see what is left to work with. I'm running out of places to look though! Could it be something in the DataBase? I couldn't find any of the preset BBCodes in the DataBase, so I figured they were all script, and I'm sure I removed the script already.
???
Still searching...