MyBB Community Forums

Full Version: Report button doesnt work
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Im not using myalerts.

This is report.js
var Report = {
	init: function()
	{
		$(document).ready(function(){
		});
	},

	reportPost: function(pid)
	{
		MyBB.popupWindow("/report.php?modal=1&type=post&pid="+pid);
	},
	
	reportUser: function(pid)
	{
		MyBB.popupWindow("/report.php?modal=1&type=profile&pid="+pid);
	},

	reportReputation: function(pid)
	{
		MyBB.popupWindow("/report.php?modal=1&type=reputation&pid="+pid);
	},
	
	submitReport: function(pid)
	{
		// Get form, serialize it and send it
		var datastring = $(".reportData_"+pid).serialize();
		$.ajax({
			type: "POST",
			url: "report.php?modal=1",
			data: datastring,
			dataType: "html",
			success: function(data) {
				// Replace modal HTML
				$('.modal_'+pid).fadeOut('slow', function() {
					$('.modal_'+pid).html(data);
					$('.modal_'+pid).fadeIn('slow');
					$('.modal').fadeIn('slow');
				});
			},
			error: function(){
				  alert(lang.unknown_error);
			}
		});

		return false;
	}
};

Report.init();


Thanks!
Posting your URL, and preferably login details for a test account, would be far more useful than the contents of a javascript file we can already access Smile
Hey,

just want to know, do you have tried to install myalerts? if this is the case then download the zip again and make sure that every file of myalerts is deleted
if there is still a file then it will crash like u said

but like @matt said before provide a test account for us
breakingls.com

id: testing
pw: testing321

(2016-12-15, 10:47 AM)Ditger Wrote: [ -> ]Hey,

just want to know, do you have tried to install myalerts? if this is the case then download the zip again and make sure that every file of myalerts is deleted
if there is still a file then it will crash like u said

but like @matt said before provide a test account for us

Everything deleted