Quote:
Originally Posted by Live Wire
When using something like this for an example:
PHP Code:
$db->query_write("UPDATE thread SET open = '0' WHERE threadid <= 99");
That obviously will close a threadID 99. My question is. Do we have to use the TABLE_PREFIX before we define the table to update?
|
I found
$db->query_write("UPDATE " . TABLE_PREFIX . " in vB 3.5.0 code, so I'd guess yes.