MyBB Community Forums

Full Version: User Activation in Profile error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I downloaded and installed this plugin but when I goto Configuration > Plugins I get this error:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/hazforum/public_html/mybb/inc/plugins/actuprofile.php on line 19
Sorry if this is in the wrong place but I did search for the official topic but no results turned up.

Harry Smile
I have fixed it now. Here is the solution for anyone else having this problem:
			$lang->load("actuprofile");
			return array(
				"name" => $lang->info_name,
				"description" => $lang->info_name,
				"website" => "http://www.mybb-es.com",
				"author" => "Himura",
				"authorsite" => "http://mybb-es.com",
				"version" => "1.0",
				"guid"    => "494660dff84833e869f4ac439cb6b0fc"
				"compatibility" => "*"
			);
Add the changes in red:
			$lang->load("actuprofile");
			return array(
				"name" => $lang->info_name,
				"description" => $lang->info_name,
				"website" => "http://www.mybb-es.com",
				"author" => "Himura",
				"authorsite" => "http://mybb-es.com",
				"version" => "1.0",
				"guid"    => "494660dff84833e869f4ac439cb6b0fc"[color=#FF0000],[/color]
				"compatibility" => "*"[color=#FF0000],[/color]
			);

Harry Smile