How to Recover Post Thanks Data

Pretty sure that uninstall drops the tables on the way out so you could be sol... If it is this hack, they should be gone:

Code:
			<uninstallcode><![CDATA[$db->hide_errors();

$vbulletin->db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "post_thanks");
$vbulletin->db->query_write("ALTER TABLE `". TABLE_PREFIX ."user` DROP `post_thanks_user_amount`");
$vbulletin->db->query_write("ALTER TABLE `". TABLE_PREFIX ."post` DROP `post_thanks_amount`");
$vbulletin->db->query_write("ALTER TABLE `". TABLE_PREFIX ."user` DROP `post_thanks_thanked_posts`");
$vbulletin->db->query_write("ALTER TABLE `". TABLE_PREFIX ."user` DROP `post_thanks_thanked_times`");

$db->show_errors();]]></uninstallcode>


You can check for your self using phpmyadmin and see if the fields are there but my guess is they are gone. Got a backup?
 
Back
Top