Line 138:
db_query("DELETE FROM semaphore WHERE value = 'httprl' AND expire < %f", time() - $fuzz_factor);
gives me watchdog errors because we are using a db prefix. Code should be:
db_query("DELETE FROM {semaphore} WHERE value = 'httprl' AND expire < %f", time() - $fuzz_factor);
in D6.
Comments
Comment #1
mikeytown2 commentedTry the latest dev, it should be fixed in it. #1846282: Fix coder warnings
Comment #2
mikeytown2 commentedClosing issue