MyBB Community Forums

Full Version: Issue with Inline Moderation/Mod Powers
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My issue is that I cannot use the selector icons next to the threads as well as inside of threads.. The issue even goes as far as not being able to use it in the AdminCP when trying to select multiple users inside of the User's area.

Image to show:
[Image: 2a88b32ae329d1fb3d980b55e2ee40de.png]

Here is my Headerinclude, which is most likely the issue, just not sure what.

<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jscripts/inline_moderation.js?ver=1400"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/snowstorm.js"></script>

{$stylesheets}
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">

<script type="text/javascript">

<!--
	lang.unknown_error = "{$lang->unknown_error}";

	lang.select2_match = "{$lang->select2_match}";
	lang.select2_matches = "{$lang->select2_matches}";
	lang.select2_nomatches = "{$lang->select2_nomatches}";
	lang.select2_inputtooshort_single = "{$lang->select2_inputtooshort_single}";
	lang.select2_inputtooshort_plural = "{$lang->select2_inputtooshort_plural}";
	lang.select2_inputtoolong_single = "{$lang->select2_inputtoolong_single}";
	lang.select2_inputtoolong_plural = "{$lang->select2_inputtoolong_plural}";
	lang.select2_selectiontoobig_single = "{$lang->select2_selectiontoobig_single}";
	lang.select2_selectiontoobig_plural = "{$lang->select2_selectiontoobig_plural}";
	lang.select2_loadmore = "{$lang->select2_loadmore}";
	lang.select2_searching = "{$lang->select2_searching}";

	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var rootpath = "{$mybb->settings['bburl']}";
	var imagepath = "{$theme['imgdir']}";
  	var yes_confirm = "{$lang->yes}";
	var no_confirm = "{$lang->no}";
	var MyBBEditor = null;
	var spinner_image = "{$theme['imgdir']}/spinner.gif";
	var spinner = "<img src='" + spinner_image +"' alt='' />";
// -->
</script>
Change

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jscripts/inline_moderation.js?ver=1400"></script>

to

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jscripts/inline_moderation.js?ver=1800"></script>
(2015-01-12, 10:38 PM)Ben_Conway Wrote: [ -> ]Change


<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jscripts/inline_moderation.js?ver=1400"></script>

to


<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jscripts/inline_moderation.js?ver=1800"></script>

Just tried that.. Seems to of not done anything.
Changing the part that says ver=1400 has no effect on what the content of the file is. Its a trick you can do if you need to force a cache purge. Have you updated the forumdisplay_inlinemoderation and forumdisplay_inlinemoderation_col templates? Are you sure you replaced all files when you upgraded?
No, I did not, but here are the files if you could explain what needs to be changed..

forumdisplay_inlinemoderation

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/inline_moderation.js?ver=1800"></script>
		<form action="moderation.php" method="post">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<input type="hidden" name="fid" value="{$fid}" />
<input type="hidden" name="modtype" value="inlinethread" />
<span class="smalltext"><strong>{$lang->inline_thread_moderation}</strong></span>
<select name="action">
	<option value="delayedmoderation">{$lang->delayed_moderation}</option>
	{$standardthreadtools}
	{$customthreadtools}
</select>
<input type="submit" class="button" name="go" value="{$lang->inline_go} ({$inlinecount})" id="inline_go" />&nbsp;
<input type="button" onclick="javascript:inlineModeration.clearChecked();" value="{$lang->clear}" class="button" />
</form>
<script type="text/javascript">
<!--
	var go_text = "{$lang->inline_go}";
	var all_text = "{$threadcount}";
	var inlineType = "forum";
	var inlineId = {$fid};
// -->
</script>
<br />

forumdisplay_inlinemoderation_col

<td class="tcat" align="center" width="1"><input type="checkbox" name="allbox" onclick="inlineModeration.checkAll(this)" /></td>
looks like you are using earlier version's theme on recent version of MyBB. you have to use compatible theme for your forum.

MyBB 1.8.x themes => http://community.mybb.com/mods.php?actio...ory=themes
(2015-01-13, 08:33 AM).m. Wrote: [ -> ]looks like you are using earlier version's theme on recent version of MyBB. you have to use compatible theme for your forum.

MyBB 1.8.x themes => http://community.mybb.com/mods.php?actio...ory=themes

Could the inline moderation template just be updated to work??? or what.. This theme is amazing..
Could you provide a temporary Administrator account for me?
i had this problem with an outdated theme a while back. There are multiple things I will need to fix in order to allow your forum to operate properly.