OK, I have installed it in a fresh install of 3.6 and it works good but I did find one rather significant bug. If an Admin deletes a classified, when one of the other staff clicks the link in the PM or E-mail they will get an ugly MYSQL error:
Quote:
Database error in vBulletin 3.6.0:
Invalid SQL:
SELECT postid
FROM PREFIXvbs_ticket_post AS post
WHERE threadid =
AND visible = 1
ORDER BY dateline
LIMIT 0, 10;
MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND visible = 1
ORDER BY dateline
LIMIT 0, 10' at line 4
Error Number : 1064
Date : Tuesday, August 22nd 2006 @ 12:41:53 PM
Script : http://www.MYDOMAIN.com/forums/vbsup...ewthread&tid=5
Referrer : http://www.MYDOMAIN.com/forums/priva...wpm&pmid=10490
IP Address : my ip address
Username : Quarterbore
Classname : vb_database
|
EDIT - HERE IS THE FIX FOR THE ABOVE ERROR (at least this works for me)
Open vbsupport.php
Find:
Code:
// get the postids for this thread
$getpostids = $vbulletin->db->query_read("
SELECT postid
FROM " . TABLE_PREFIX . "vbs_ticket_post AS post
WHERE threadid = $threadid
AND visible = 1
ORDER BY dateline
LIMIT $limitlower, $perpage
");
Before Add:
Code:
if(empty($threadid)){
eval(standard_error(fetch_error('vbsupport_thread_notexists')));
}
Next, create phrase in vBulletin:
type: Error
Product: vBSupport
varName: vbsupport_thread_notexists
text: The requested ticket does not exist in the system. It is possible that the ticket has been deleted by an Admin.
Solves this issue on my site!