The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#5
|
|||
|
|||
![]()
Hey, I know this was in the wrong section to begin with, but in case someone searches up the same thing, I thought I'd post the fix I was able to come up with!
Search tags: Inferno Shoutbox V3 AJAX Fix: In the infernoshout.php file look for the method in charge of submitting the shout: Code:
if ($_POST['do'] == 'shout' && ($message = trim($_REQUEST['message'])) != '') { $vbulletin->input->clean_array_gpc('r', array( 'message' => TYPE_STR, )); $message = trim($vbulletin->GPC['message']); if ($vbulletin->userinfo['userid'] > 0) { $infernoshout->load_engine('shout'); $shout = new shout; $shout->process($message); } } Code:
if ($_POST['do'] == 'shout' && ($message = trim($_REQUEST['message'])) != '') { $vbulletin->input->clean_array_gpc('r', array( 'message' => TYPE_STR, )); $message = trim($vbulletin->GPC['message']); if ($vbulletin->userinfo['userid'] > 0) { $infernoshout->load_engine('shout'); $shout = new shout; $shout->process(stripslashes($message)); } } Cheers! |
Благодарность от: | ||
MarkFL |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|