Edit: I also reported this issue in the Tapatalk forums.
mobiquo/include/save_raw_post.php -> function save_raw_post_func()
Code:
// Set up the post options from the input.
$post['options'] = array(
"signature" => 1,
"subscriptionmethod" => "",
"disablesmilies" => 0
);_mybbpath_/inc/datahandlers/post.php -> function update_post()
Code:
// Automatic subscription to the thread
if($post['options']['subscriptionmethod'] != "" && $post['uid'] > 0)
{
switch($post['options']['subscriptionmethod'])
{
case "instant":
$notification = 1;
break;
default:
$notification = 0;
}
require_once MYBB_ROOT."inc/functions_user.php";
add_subscribed_thread($post['tid'], $notification, $post['uid']);
}
else
{
$db->delete_query("threadsubscriptions", "uid='".intval($post['uid'])."' AND tid='".intval($post['tid'])."'");
}

![[Image: strip.jpg]](http://2ndmind.net/xbmc/forumsig/strip.jpg)
Search
Help