Fixed it. I opened the modulefunctions.php and changed...
Around Line 124, find...
Code: Select all
echo $module->CreateLink($id, 'faqX', $returnid,'<input type="button" value="Show Categories"/>', array("action"=>"show_cats"));
change to
Code: Select all
echo $module->CreateLink($id, 'faqX', $returnid,'Show Categories', array("action"=>"show_cats"));
and
Around line 131, find...
Code: Select all
echo $module->CreateLink($id, 'faqX', $returnid,'<input type="button" value="ADD NEW FAQ"/>', array("action"=>"new", "Cat"=>$_REQUEST["m1_Cat"]));
change to
Code: Select all
echo $module->CreateLink($id, 'faqX', $returnid,'Add New FAQ', array("action"=>"new", "Cat"=>$_REQUEST["m1_Cat"]));
Done!!!
One thing I did notice however, your code will fault if you have an apostrophe in any of the text (title or Body). Other than that... it works nicely.