This doesnt give me an error, but it's not working, and threadviews table still continues to grow.
i have also tried
Code:
$vbulletin->db->query
Code:
$db->query
both resulting in database errors.
The goal:
if vb options are not set to update view counts immediately, each view is stored in the threadviews table. this happens with that first block of code from showthread.php
so when you view a thread that query runs, i want my query to just delete the row that first query added.
i have got this all worked out if admins update threads immediately, but i don't want to dictate their having to choose that option.
--------------- Added [DATE]1457655461[/DATE] at [TIME]1457655461[/TIME] ---------------
this is working
Code:
$vbulletin->db->query_first("
DELETE FROM " . TABLE_PREFIX . "threadviews
WHERE threadid = $threadinfo[threadid]
LIMIT 1
");
is it proper?
The original code will throw a database error, you just wont see it because its being run as a shutdown query.
You final code is fine, but you dont actually need the LIMIT 1.